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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("../../../mojo/public/tools/bindings/mojom.gni") | 6 import("../../../mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 13 matching lines...) Expand all Loading... |
24 #component("system") { | 24 #component("system") { |
25 # TODO(use_chrome_edk): remove "2" | 25 # TODO(use_chrome_edk): remove "2" |
26 output_name = "mojo_system_impl2" | 26 output_name = "mojo_system_impl2" |
27 | 27 |
28 sources = [ | 28 sources = [ |
29 "async_waiter.cc", | 29 "async_waiter.cc", |
30 "async_waiter.h", | 30 "async_waiter.h", |
31 "awakable.h", | 31 "awakable.h", |
32 "awakable_list.cc", | 32 "awakable_list.cc", |
33 "awakable_list.h", | 33 "awakable_list.h", |
| 34 "child_token_serializer_win.cc", |
| 35 "child_token_serializer_win.h", |
34 "configuration.cc", | 36 "configuration.cc", |
35 "configuration.h", | 37 "configuration.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", |
45 "dispatcher.h", | 47 "dispatcher.h", |
46 "handle_signals_state.h", | 48 "handle_signals_state.h", |
47 "handle_table.cc", | 49 "handle_table.cc", |
48 "handle_table.h", | 50 "handle_table.h", |
49 "mapping_table.cc", | 51 "mapping_table.cc", |
50 "mapping_table.h", | 52 "mapping_table.h", |
51 "message_in_transit.cc", | 53 "message_in_transit.cc", |
52 "message_in_transit.h", | 54 "message_in_transit.h", |
53 "message_in_transit_queue.cc", | 55 "message_in_transit_queue.cc", |
54 "message_in_transit_queue.h", | 56 "message_in_transit_queue.h", |
55 "message_pipe_dispatcher.cc", | 57 "message_pipe_dispatcher.cc", |
56 "message_pipe_dispatcher.h", | 58 "message_pipe_dispatcher.h", |
57 "options_validation.h", | 59 "options_validation.h", |
| 60 "parent_token_serializer_state_win.cc", |
| 61 "parent_token_serializer_state_win.h", |
| 62 "parent_token_serializer_win.cc", |
| 63 "parent_token_serializer_win.h", |
58 "platform_handle_dispatcher.cc", | 64 "platform_handle_dispatcher.cc", |
59 "platform_handle_dispatcher.h", | 65 "platform_handle_dispatcher.h", |
60 "raw_channel.cc", | 66 "raw_channel.cc", |
61 "raw_channel.h", | 67 "raw_channel.h", |
62 "raw_channel_posix.cc", | 68 "raw_channel_posix.cc", |
63 "raw_channel_win.cc", | 69 "raw_channel_win.cc", |
64 "shared_buffer_dispatcher.cc", | 70 "shared_buffer_dispatcher.cc", |
65 "shared_buffer_dispatcher.h", | 71 "shared_buffer_dispatcher.h", |
66 "simple_dispatcher.cc", | 72 "simple_dispatcher.cc", |
67 "simple_dispatcher.h", | 73 "simple_dispatcher.h", |
| 74 "simple_token_serializer_win.cc", |
| 75 "simple_token_serializer_win.h", |
| 76 "token_serializer_messages_win.h", |
| 77 "token_serializer_win.h", |
68 "transport_data.cc", | 78 "transport_data.cc", |
69 "transport_data.h", | 79 "transport_data.h", |
70 "waiter.cc", | 80 "waiter.cc", |
71 "waiter.h", | 81 "waiter.h", |
72 ] | 82 ] |
73 | 83 |
74 defines = [ | 84 defines = [ |
75 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 85 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
76 "MOJO_SYSTEM_IMPLEMENTATION", | 86 "MOJO_SYSTEM_IMPLEMENTATION", |
77 ] | 87 ] |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 "../test:test_support", | 202 "../test:test_support", |
193 "//base", | 203 "//base", |
194 "//base/test:test_support", | 204 "//base/test:test_support", |
195 "//testing/gtest", | 205 "//testing/gtest", |
196 | 206 |
197 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are | 207 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
198 # declared in third party only for now. | 208 # declared in third party only for now. |
199 "//third_party/mojo/src/mojo/edk/system", | 209 "//third_party/mojo/src/mojo/edk/system", |
200 ] | 210 ] |
201 } | 211 } |
OLD | NEW |