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 13 matching lines...) Expand all Loading... |
24 "../embedder/platform_channel_pair_win.cc", | 24 "../embedder/platform_channel_pair_win.cc", |
25 "../embedder/platform_channel_utils_posix.cc", | 25 "../embedder/platform_channel_utils_posix.cc", |
26 "../embedder/platform_channel_utils_posix.h", | 26 "../embedder/platform_channel_utils_posix.h", |
27 "../embedder/platform_handle.cc", | 27 "../embedder/platform_handle.cc", |
28 "../embedder/platform_handle.h", | 28 "../embedder/platform_handle.h", |
29 "../embedder/platform_handle_utils.h", | 29 "../embedder/platform_handle_utils.h", |
30 "../embedder/platform_handle_utils_posix.cc", | 30 "../embedder/platform_handle_utils_posix.cc", |
31 "../embedder/platform_handle_utils_win.cc", | 31 "../embedder/platform_handle_utils_win.cc", |
32 "../embedder/platform_handle_vector.h", | 32 "../embedder/platform_handle_vector.h", |
33 "../embedder/platform_shared_buffer.h", | 33 "../embedder/platform_shared_buffer.h", |
| 34 "../embedder/platform_support.h", |
34 "../embedder/scoped_platform_handle.h", | 35 "../embedder/scoped_platform_handle.h", |
35 "../embedder/simple_platform_shared_buffer.cc", | 36 "../embedder/simple_platform_shared_buffer.cc", |
36 "../embedder/simple_platform_shared_buffer.h", | 37 "../embedder/simple_platform_shared_buffer.h", |
37 "../embedder/simple_platform_shared_buffer_posix.cc", | 38 "../embedder/simple_platform_shared_buffer_posix.cc", |
38 "../embedder/simple_platform_shared_buffer_win.cc", | 39 "../embedder/simple_platform_shared_buffer_win.cc", |
| 40 "../embedder/simple_platform_support.cc", |
| 41 "../embedder/simple_platform_support.h", |
39 "channel.cc", | 42 "channel.cc", |
40 "channel.h", | 43 "channel.h", |
41 "constants.h", | 44 "constants.h", |
42 "core.cc", | 45 "core.cc", |
43 "core.h", | 46 "core.h", |
44 "data_pipe.cc", | 47 "data_pipe.cc", |
45 "data_pipe.h", | 48 "data_pipe.h", |
46 "data_pipe_consumer_dispatcher.cc", | 49 "data_pipe_consumer_dispatcher.cc", |
47 "data_pipe_consumer_dispatcher.h", | 50 "data_pipe_consumer_dispatcher.h", |
48 "data_pipe_producer_dispatcher.cc", | 51 "data_pipe_producer_dispatcher.cc", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "MOJO_SYSTEM_IMPLEMENTATION", | 106 "MOJO_SYSTEM_IMPLEMENTATION", |
104 ] | 107 ] |
105 | 108 |
106 all_dependent_configs = [ ":system_config" ] | 109 all_dependent_configs = [ ":system_config" ] |
107 | 110 |
108 deps = [ | 111 deps = [ |
109 "//base", | 112 "//base", |
110 "//base/third_party/dynamic_annotations", | 113 "//base/third_party/dynamic_annotations", |
111 ] | 114 ] |
112 } | 115 } |
OLD | NEW |