| 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", | 34 "broker.h", |
| 35 "child_token_serializer_win.h", | 35 "broker_messages.h", |
| 36 "broker_state.cc", |
| 37 "broker_state.h", |
| 38 "child_broker.cc", |
| 39 "child_broker.h", |
| 40 "child_broker_host.cc", |
| 41 "child_broker_host.h", |
| 36 "configuration.cc", | 42 "configuration.cc", |
| 37 "configuration.h", | 43 "configuration.h", |
| 38 "core.cc", | 44 "core.cc", |
| 39 "core.h", | 45 "core.h", |
| 40 "data_pipe.cc", | 46 "data_pipe.cc", |
| 41 "data_pipe.h", | 47 "data_pipe.h", |
| 42 "data_pipe_consumer_dispatcher.cc", | 48 "data_pipe_consumer_dispatcher.cc", |
| 43 "data_pipe_consumer_dispatcher.h", | 49 "data_pipe_consumer_dispatcher.h", |
| 44 "data_pipe_producer_dispatcher.cc", | 50 "data_pipe_producer_dispatcher.cc", |
| 45 "data_pipe_producer_dispatcher.h", | 51 "data_pipe_producer_dispatcher.h", |
| 46 "dispatcher.cc", | 52 "dispatcher.cc", |
| 47 "dispatcher.h", | 53 "dispatcher.h", |
| 48 "handle_signals_state.h", | 54 "handle_signals_state.h", |
| 49 "handle_table.cc", | 55 "handle_table.cc", |
| 50 "handle_table.h", | 56 "handle_table.h", |
| 51 "mapping_table.cc", | 57 "mapping_table.cc", |
| 52 "mapping_table.h", | 58 "mapping_table.h", |
| 53 "message_in_transit.cc", | 59 "message_in_transit.cc", |
| 54 "message_in_transit.h", | 60 "message_in_transit.h", |
| 55 "message_in_transit_queue.cc", | 61 "message_in_transit_queue.cc", |
| 56 "message_in_transit_queue.h", | 62 "message_in_transit_queue.h", |
| 57 "message_pipe_dispatcher.cc", | 63 "message_pipe_dispatcher.cc", |
| 58 "message_pipe_dispatcher.h", | 64 "message_pipe_dispatcher.h", |
| 59 "options_validation.h", | 65 "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", | |
| 64 "platform_handle_dispatcher.cc", | 66 "platform_handle_dispatcher.cc", |
| 65 "platform_handle_dispatcher.h", | 67 "platform_handle_dispatcher.h", |
| 66 "raw_channel.cc", | 68 "raw_channel.cc", |
| 67 "raw_channel.h", | 69 "raw_channel.h", |
| 68 "raw_channel_posix.cc", | 70 "raw_channel_posix.cc", |
| 69 "raw_channel_win.cc", | 71 "raw_channel_win.cc", |
| 70 "shared_buffer_dispatcher.cc", | 72 "shared_buffer_dispatcher.cc", |
| 71 "shared_buffer_dispatcher.h", | 73 "shared_buffer_dispatcher.h", |
| 74 "simple_broker.cc", |
| 75 "simple_broker.h", |
| 72 "simple_dispatcher.cc", | 76 "simple_dispatcher.cc", |
| 73 "simple_dispatcher.h", | 77 "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", | |
| 78 "transport_data.cc", | 78 "transport_data.cc", |
| 79 "transport_data.h", | 79 "transport_data.h", |
| 80 "waiter.cc", | 80 "waiter.cc", |
| 81 "waiter.h", | 81 "waiter.h", |
| 82 ] | 82 ] |
| 83 | 83 |
| 84 defines = [ | 84 defines = [ |
| 85 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 85 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
| 86 "MOJO_SYSTEM_IMPLEMENTATION", | 86 "MOJO_SYSTEM_IMPLEMENTATION", |
| 87 ] | 87 ] |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 "../test:test_support", | 202 "../test:test_support", |
| 203 "//base", | 203 "//base", |
| 204 "//base/test:test_support", | 204 "//base/test:test_support", |
| 205 "//testing/gtest", | 205 "//testing/gtest", |
| 206 | 206 |
| 207 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are | 207 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
| 208 # declared in third party only for now. | 208 # declared in third party only for now. |
| 209 "//third_party/mojo/src/mojo/edk/system", | 209 "//third_party/mojo/src/mojo/edk/system", |
| 210 ] | 210 ] |
| 211 } | 211 } |
| OLD | NEW |