Chromium Code Reviews| 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 | |
|
jamesr
2014/09/11 22:56:34
why'd you delete this? it's still true
| |
| 7 # mojo_system_impl component. | |
| 8 visibility = [ "//mojo/system" ] | |
| 9 | |
| 10 deps = [ "//base", ] | 6 deps = [ "//base", ] |
| 11 | 7 |
| 12 defines = [ | 8 defines = [ |
| 13 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 9 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
| 14 "MOJO_SYSTEM_IMPLEMENTATION", | 10 "MOJO_SYSTEM_IMPLEMENTATION", |
| 15 ] | 11 ] |
| 16 | 12 |
| 17 configs += [ "//mojo/system:system_config" ] | 13 configs += [ "//mojo/system:system_config" ] |
| 18 | 14 |
| 19 sources = [ | 15 sources = [ |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 62 "//mojo/system", | 58 "//mojo/system", |
| 63 "//testing/gtest", | 59 "//testing/gtest", |
| 64 ] | 60 ] |
| 65 | 61 |
| 66 sources = [ | 62 sources = [ |
| 67 "embedder_unittest.cc", | 63 "embedder_unittest.cc", |
| 68 "platform_channel_pair_posix_unittest.cc", | 64 "platform_channel_pair_posix_unittest.cc", |
| 69 "simple_platform_shared_buffer_unittest.cc", | 65 "simple_platform_shared_buffer_unittest.cc", |
| 70 ] | 66 ] |
| 71 } | 67 } |
| OLD | NEW |