| 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 14 matching lines...) Expand all Loading... |
| 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.cc", |
| 34 "channel_endpoint_id.h", | 34 "channel_endpoint_id.h", |
| 35 "channel_info.cc", |
| 36 "channel_info.h", |
| 35 "constants.h", | 37 "constants.h", |
| 36 "core.cc", | 38 "core.cc", |
| 37 "core.h", | 39 "core.h", |
| 38 "data_pipe.cc", | 40 "data_pipe.cc", |
| 39 "data_pipe.h", | 41 "data_pipe.h", |
| 40 "data_pipe_consumer_dispatcher.cc", | 42 "data_pipe_consumer_dispatcher.cc", |
| 41 "data_pipe_consumer_dispatcher.h", | 43 "data_pipe_consumer_dispatcher.h", |
| 42 "data_pipe_producer_dispatcher.cc", | 44 "data_pipe_producer_dispatcher.cc", |
| 43 "data_pipe_producer_dispatcher.h", | 45 "data_pipe_producer_dispatcher.h", |
| 44 "dispatcher.cc", | 46 "dispatcher.cc", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ] | 143 ] |
| 142 | 144 |
| 143 sources = [ | 145 sources = [ |
| 144 "message_pipe_perftest.cc", | 146 "message_pipe_perftest.cc", |
| 145 "message_pipe_test_utils.h", | 147 "message_pipe_test_utils.h", |
| 146 "message_pipe_test_utils.cc", | 148 "message_pipe_test_utils.cc", |
| 147 "test_utils.cc", | 149 "test_utils.cc", |
| 148 "test_utils.h", | 150 "test_utils.h", |
| 149 ] | 151 ] |
| 150 } | 152 } |
| OLD | NEW |