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 "../embedder/platform_channel_pair_posix.cc", | 23 "../embedder/platform_channel_pair_posix.cc", |
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/scoped_platform_handle.h", | 34 "../embedder/scoped_platform_handle.h", |
34 "channel.cc", | 35 "channel.cc", |
35 "channel.h", | 36 "channel.h", |
36 "constants.h", | 37 "constants.h", |
37 "core.cc", | 38 "core.cc", |
38 "core.h", | 39 "core.h", |
39 "data_pipe.cc", | 40 "data_pipe.cc", |
40 "data_pipe.h", | 41 "data_pipe.h", |
41 "data_pipe_consumer_dispatcher.cc", | 42 "data_pipe_consumer_dispatcher.cc", |
42 "data_pipe_consumer_dispatcher.h", | 43 "data_pipe_consumer_dispatcher.h", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "MOJO_SYSTEM_IMPLEMENTATION", | 103 "MOJO_SYSTEM_IMPLEMENTATION", |
103 ] | 104 ] |
104 | 105 |
105 all_dependent_configs = [ ":system_config" ] | 106 all_dependent_configs = [ ":system_config" ] |
106 | 107 |
107 deps = [ | 108 deps = [ |
108 "//base", | 109 "//base", |
109 "//base/third_party/dynamic_annotations", | 110 "//base/third_party/dynamic_annotations", |
110 ] | 111 ] |
111 } | 112 } |
OLD | NEW |