blob: 119bcc6ffb40cab788fadfa56f3df4c6c67de9b5 [file] [log] [blame]
# Copyright 2016 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("cpp") {
testonly = true
deps = [
":context_helper",
":context_metadata_builder",
]
}
source_set("context_helper") {
sources = [
"context_helper.cc",
"context_helper.h",
]
public_configs = [ "//peridot/public:config" ]
deps = [
"//sdk/fidl/fuchsia.modular",
]
}
source_set("context_metadata_builder") {
sources = [
"context_metadata_builder.cc",
"context_metadata_builder.h",
]
public_configs = [ "//peridot/public:config" ]
deps = [
"//sdk/fidl/fuchsia.modular",
"//sdk/lib/fidl/cpp",
]
}