| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
| 6 | 6 |
| 7 mojo_edk_source_set("embedder") { | 7 mojo_edk_source_set("embedder") { |
| 8 # This isn't really a standalone target; it must be linked into the | 8 # This isn't really a standalone target; it must be linked into the |
| 9 # mojo_system_impl component. | 9 # mojo_system_impl component. |
| 10 mojo_edk_visibility = [ "mojo/edk/system" ] | 10 mojo_edk_visibility = [ "mojo/edk/system" ] |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "../../public/platform/native/core_system_api.h", # HACK |
| 13 "channel_info_forward.h", | 14 "channel_info_forward.h", |
| 14 "configuration.h", | 15 "configuration.h", |
| 16 "core_entrypoints.cc", |
| 15 "embedder.cc", | 17 "embedder.cc", |
| 16 "embedder.h", | 18 "embedder.h", |
| 17 "embedder_internal.h", | 19 "embedder_internal.h", |
| 18 "entrypoints.cc", | 20 "entrypoints.cc", |
| 19 | 21 |
| 20 # Test-only code: | 22 # Test-only code: |
| 21 # TODO(vtl): It's a little unfortunate that these end up in the same | 23 # TODO(vtl): It's a little unfortunate that these end up in the same |
| 22 # component as non-test-only code. In the static build, this code should | 24 # component as non-test-only code. In the static build, this code should |
| 23 # hopefully be dead-stripped. | 25 # hopefully be dead-stripped. |
| 24 "test_embedder.cc", | 26 "test_embedder.cc", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "//base/test:test_support", | 130 "//base/test:test_support", |
| 129 "//testing/gtest", | 131 "//testing/gtest", |
| 130 ] | 132 ] |
| 131 | 133 |
| 132 mojo_edk_deps = [ | 134 mojo_edk_deps = [ |
| 133 "mojo/edk/test:test_support", | 135 "mojo/edk/test:test_support", |
| 134 "mojo/edk/system", | 136 "mojo/edk/system", |
| 135 "mojo/edk/system:test_utils", | 137 "mojo/edk/system:test_utils", |
| 136 ] | 138 ] |
| 137 } | 139 } |
| OLD | NEW |