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 10 matching lines...) Expand all Loading... |
21 defines = [ | 21 defines = [ |
22 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 22 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
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", |
| 32 "channel_endpoint.h", |
31 "constants.h", | 33 "constants.h", |
32 "core.cc", | 34 "core.cc", |
33 "core.h", | 35 "core.h", |
34 "data_pipe.cc", | 36 "data_pipe.cc", |
35 "data_pipe.h", | 37 "data_pipe.h", |
36 "data_pipe_consumer_dispatcher.cc", | 38 "data_pipe_consumer_dispatcher.cc", |
37 "data_pipe_consumer_dispatcher.h", | 39 "data_pipe_consumer_dispatcher.h", |
38 "data_pipe_producer_dispatcher.cc", | 40 "data_pipe_producer_dispatcher.cc", |
39 "data_pipe_producer_dispatcher.h", | 41 "data_pipe_producer_dispatcher.h", |
40 "dispatcher.cc", | 42 "dispatcher.cc", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 ] | 137 ] |
136 | 138 |
137 sources = [ | 139 sources = [ |
138 "message_pipe_perftest.cc", | 140 "message_pipe_perftest.cc", |
139 "message_pipe_test_utils.h", | 141 "message_pipe_test_utils.h", |
140 "message_pipe_test_utils.cc", | 142 "message_pipe_test_utils.cc", |
141 "test_utils.cc", | 143 "test_utils.cc", |
142 "test_utils.h", | 144 "test_utils.h", |
143 ] | 145 ] |
144 } | 146 } |
OLD | NEW |