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 25 matching lines...) Expand all Loading... |
36 "core.h", | 36 "core.h", |
37 "data_pipe.cc", | 37 "data_pipe.cc", |
38 "data_pipe.h", | 38 "data_pipe.h", |
39 "data_pipe_consumer_dispatcher.cc", | 39 "data_pipe_consumer_dispatcher.cc", |
40 "data_pipe_consumer_dispatcher.h", | 40 "data_pipe_consumer_dispatcher.h", |
41 "data_pipe_producer_dispatcher.cc", | 41 "data_pipe_producer_dispatcher.cc", |
42 "data_pipe_producer_dispatcher.h", | 42 "data_pipe_producer_dispatcher.h", |
43 "dispatcher.cc", | 43 "dispatcher.cc", |
44 "dispatcher.h", | 44 "dispatcher.h", |
45 "entrypoints.cc", | 45 "entrypoints.cc", |
| 46 "handle_signals_state.h", |
46 "handle_table.cc", | 47 "handle_table.cc", |
47 "handle_table.h", | 48 "handle_table.h", |
48 "local_data_pipe.cc", | 49 "local_data_pipe.cc", |
49 "local_data_pipe.h", | 50 "local_data_pipe.h", |
50 "local_message_pipe_endpoint.cc", | 51 "local_message_pipe_endpoint.cc", |
51 "local_message_pipe_endpoint.h", | 52 "local_message_pipe_endpoint.h", |
52 "mapping_table.cc", | 53 "mapping_table.cc", |
53 "mapping_table.h", | 54 "mapping_table.h", |
54 "memory.cc", | 55 "memory.cc", |
55 "memory.h", | 56 "memory.h", |
(...skipping 19 matching lines...) Expand all Loading... |
75 "raw_shared_buffer.cc", | 76 "raw_shared_buffer.cc", |
76 "raw_shared_buffer.h", | 77 "raw_shared_buffer.h", |
77 "raw_shared_buffer_posix.cc", | 78 "raw_shared_buffer_posix.cc", |
78 "raw_shared_buffer_win.cc", | 79 "raw_shared_buffer_win.cc", |
79 "shared_buffer_dispatcher.cc", | 80 "shared_buffer_dispatcher.cc", |
80 "shared_buffer_dispatcher.h", | 81 "shared_buffer_dispatcher.h", |
81 "simple_dispatcher.cc", | 82 "simple_dispatcher.cc", |
82 "simple_dispatcher.h", | 83 "simple_dispatcher.h", |
83 "transport_data.cc", | 84 "transport_data.cc", |
84 "transport_data.h", | 85 "transport_data.h", |
85 "wait_flags_state.h", | |
86 "waiter.cc", | 86 "waiter.cc", |
87 "waiter.h", | 87 "waiter.h", |
88 "waiter_list.cc", | 88 "waiter_list.cc", |
89 "waiter_list.h", | 89 "waiter_list.h", |
90 # Test-only code: | 90 # Test-only code: |
91 # TODO(vtl): It's a little unfortunate that these end up in the same | 91 # TODO(vtl): It's a little unfortunate that these end up in the same |
92 # component as non-test-only code. In the static build, this code should | 92 # component as non-test-only code. In the static build, this code should |
93 # hopefully be dead-stripped. | 93 # hopefully be dead-stripped. |
94 "../embedder/test_embedder.cc", | 94 "../embedder/test_embedder.cc", |
95 "../embedder/test_embedder.h", | 95 "../embedder/test_embedder.h", |
96 ] | 96 ] |
97 | 97 |
98 defines = [ | 98 defines = [ |
99 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 99 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
100 "MOJO_SYSTEM_IMPLEMENTATION", | 100 "MOJO_SYSTEM_IMPLEMENTATION", |
101 ] | 101 ] |
102 | 102 |
103 all_dependent_configs = [ ":system_config" ] | 103 all_dependent_configs = [ ":system_config" ] |
104 | 104 |
105 deps = [ | 105 deps = [ |
106 "//base", | 106 "//base", |
107 "//base/third_party/dynamic_annotations", | 107 "//base/third_party/dynamic_annotations", |
108 ] | 108 ] |
109 } | 109 } |
OLD | NEW |