| 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 config("system_config") { | 5 config("system_config") { |
| 6 defines = [ | 6 defines = [ |
| 7 # Ensures that dependent projects import the core functions on Windows. | 7 # Ensures that dependent projects import the core functions on Windows. |
| 8 "MOJO_USE_SYSTEM_IMPL", | 8 "MOJO_USE_SYSTEM_IMPL", |
| 9 ] | 9 ] |
| 10 } | 10 } |
| 11 | 11 |
| 12 component("system") { | 12 component("system") { |
| 13 output_name = "mojo_system_impl" | 13 output_name = "mojo_system_impl" |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "channel.cc", | 16 "channel.cc", |
| 17 "channel.h", | 17 "channel.h", |
| 18 "channel_endpoint.cc", | 18 "channel_endpoint.cc", |
| 19 "channel_endpoint.h", | 19 "channel_endpoint.h", |
| 20 "channel_endpoint_client.h", |
| 20 "channel_endpoint_id.cc", | 21 "channel_endpoint_id.cc", |
| 21 "channel_endpoint_id.h", | 22 "channel_endpoint_id.h", |
| 22 "channel_info.cc", | 23 "channel_info.cc", |
| 23 "channel_info.h", | 24 "channel_info.h", |
| 24 "channel_manager.cc", | 25 "channel_manager.cc", |
| 25 "channel_manager.h", | 26 "channel_manager.h", |
| 26 "configuration.cc", | 27 "configuration.cc", |
| 27 "configuration.h", | 28 "configuration.h", |
| 28 "core.cc", | 29 "core.cc", |
| 29 "core.h", | 30 "core.h", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 | 157 |
| 157 deps = [ | 158 deps = [ |
| 158 ":system", | 159 ":system", |
| 159 "//base", | 160 "//base", |
| 160 "//base/test:test_support", | 161 "//base/test:test_support", |
| 161 "//base/test:test_support_perf", | 162 "//base/test:test_support_perf", |
| 162 "//mojo/edk/test:test_support", | 163 "//mojo/edk/test:test_support", |
| 163 "//testing/gtest", | 164 "//testing/gtest", |
| 164 ] | 165 ] |
| 165 } | 166 } |
| OLD | NEW |