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 } |
(...skipping 12 matching lines...) Expand all Loading... |
23 "MOJO_SYSTEM_IMPLEMENTATION", | 23 "MOJO_SYSTEM_IMPLEMENTATION", |
24 ] | 24 ] |
25 | 25 |
26 all_dependent_configs = [ ":system_config" ] | 26 all_dependent_configs = [ ":system_config" ] |
27 | 27 |
28 sources = [ | 28 sources = [ |
29 "channel.cc", | 29 "channel.cc", |
30 "channel.h", | 30 "channel.h", |
31 "channel_endpoint.cc", | 31 "channel_endpoint.cc", |
32 "channel_endpoint.h", | 32 "channel_endpoint.h", |
| 33 "channel_endpoint_id.cc", |
33 "channel_endpoint_id.h", | 34 "channel_endpoint_id.h", |
34 "constants.h", | 35 "constants.h", |
35 "core.cc", | 36 "core.cc", |
36 "core.h", | 37 "core.h", |
37 "data_pipe.cc", | 38 "data_pipe.cc", |
38 "data_pipe.h", | 39 "data_pipe.h", |
39 "data_pipe_consumer_dispatcher.cc", | 40 "data_pipe_consumer_dispatcher.cc", |
40 "data_pipe_consumer_dispatcher.h", | 41 "data_pipe_consumer_dispatcher.h", |
41 "data_pipe_producer_dispatcher.cc", | 42 "data_pipe_producer_dispatcher.cc", |
42 "data_pipe_producer_dispatcher.h", | 43 "data_pipe_producer_dispatcher.h", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 deps = [ | 92 deps = [ |
92 ":system", | 93 ":system", |
93 "//base", | 94 "//base", |
94 "//mojo/edk/embedder:embedder_unittests", | 95 "//mojo/edk/embedder:embedder_unittests", |
95 "//mojo/edk/test:test_support", | 96 "//mojo/edk/test:test_support", |
96 "//testing/gtest", | 97 "//testing/gtest", |
97 ] | 98 ] |
98 | 99 |
99 sources = [ | 100 sources = [ |
100 "../test/multiprocess_test_helper_unittest.cc", | 101 "../test/multiprocess_test_helper_unittest.cc", |
| 102 "channel_endpoint_id_unittest.cc", |
101 "channel_unittest.cc", | 103 "channel_unittest.cc", |
102 "core_test_base.cc", | 104 "core_test_base.cc", |
103 "core_test_base.h", | 105 "core_test_base.h", |
104 "core_unittest.cc", | 106 "core_unittest.cc", |
105 "data_pipe_unittest.cc", | 107 "data_pipe_unittest.cc", |
106 "dispatcher_unittest.cc", | 108 "dispatcher_unittest.cc", |
107 "local_data_pipe_unittest.cc", | 109 "local_data_pipe_unittest.cc", |
108 "memory_unittest.cc", | 110 "memory_unittest.cc", |
109 "message_pipe_dispatcher_unittest.cc", | 111 "message_pipe_dispatcher_unittest.cc", |
110 "message_pipe_test_utils.cc", | 112 "message_pipe_test_utils.cc", |
(...skipping 28 matching lines...) Expand all Loading... |
139 ] | 141 ] |
140 | 142 |
141 sources = [ | 143 sources = [ |
142 "message_pipe_perftest.cc", | 144 "message_pipe_perftest.cc", |
143 "message_pipe_test_utils.h", | 145 "message_pipe_test_utils.h", |
144 "message_pipe_test_utils.cc", | 146 "message_pipe_test_utils.cc", |
145 "test_utils.cc", | 147 "test_utils.cc", |
146 "test_utils.h", | 148 "test_utils.h", |
147 ] | 149 ] |
148 } | 150 } |
OLD | NEW |