| 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 source_set("embedder") { | 5 source_set("embedder") { |
| 6 # This isn't really a standalone target, it must be linked into the | 6 # This isn't really a standalone target, it must be linked into the |
| 7 # mojo_system_impl component. | 7 # mojo_system_impl component. |
| 8 visibility = [ "//mojo/edk/system" ] | 8 visibility = [ "//mojo/edk/system" ] |
| 9 | 9 |
| 10 deps = [ "//base", ] | 10 deps = [ |
| 11 "//base", |
| 12 "//mojo/public/cpp/system", |
| 13 ] |
| 11 | 14 |
| 12 defines = [ | 15 defines = [ |
| 13 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 16 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
| 14 "MOJO_SYSTEM_IMPLEMENTATION", | 17 "MOJO_SYSTEM_IMPLEMENTATION", |
| 15 ] | 18 ] |
| 16 | 19 |
| 17 configs += [ "//mojo/edk/system:system_config" ] | 20 configs += [ "//mojo/edk/system:system_config" ] |
| 18 | 21 |
| 19 sources = [ | 22 sources = [ |
| 20 "channel_info_forward.h", | 23 "channel_info_forward.h", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "//mojo/edk/system", | 66 "//mojo/edk/system", |
| 64 "//testing/gtest", | 67 "//testing/gtest", |
| 65 ] | 68 ] |
| 66 | 69 |
| 67 sources = [ | 70 sources = [ |
| 68 "embedder_unittest.cc", | 71 "embedder_unittest.cc", |
| 69 "platform_channel_pair_posix_unittest.cc", | 72 "platform_channel_pair_posix_unittest.cc", |
| 70 "simple_platform_shared_buffer_unittest.cc", | 73 "simple_platform_shared_buffer_unittest.cc", |
| 71 ] | 74 ] |
| 72 } | 75 } |
| OLD | NEW |