| Index: mojo/edk/system/BUILD.gn
|
| diff --git a/mojo/edk/system/BUILD.gn b/mojo/edk/system/BUILD.gn
|
| index cd58ff40a5a974f4c1be72adc0613285b316a736..9aa7b70b8d45078b1d1809374487538baa168a3c 100644
|
| --- a/mojo/edk/system/BUILD.gn
|
| +++ b/mojo/edk/system/BUILD.gn
|
| @@ -31,22 +31,18 @@ static_library("system") {
|
| "awakable.h",
|
| "awakable_list.cc",
|
| "awakable_list.h",
|
| - "broker.h",
|
| - "broker_messages.h",
|
| - "broker_state.cc",
|
| - "broker_state.h",
|
| - "child_broker.cc",
|
| - "child_broker.h",
|
| - "child_broker_host.cc",
|
| - "child_broker_host.h",
|
| + "channel.cc",
|
| + "channel.h",
|
| + "channel_posix.cc",
|
| + "channel_win.cc",
|
| "configuration.cc",
|
| "configuration.h",
|
| "core.cc",
|
| "core.h",
|
| - "data_pipe.cc",
|
| - "data_pipe.h",
|
| "data_pipe_consumer_dispatcher.cc",
|
| "data_pipe_consumer_dispatcher.h",
|
| + "data_pipe_control_message.cc",
|
| + "data_pipe_control_message.h",
|
| "data_pipe_producer_dispatcher.cc",
|
| "data_pipe_producer_dispatcher.h",
|
| "dispatcher.cc",
|
| @@ -56,27 +52,21 @@ static_library("system") {
|
| "handle_table.h",
|
| "mapping_table.cc",
|
| "mapping_table.h",
|
| - "message_in_transit.cc",
|
| - "message_in_transit.h",
|
| - "message_in_transit_queue.cc",
|
| - "message_in_transit_queue.h",
|
| "message_pipe_dispatcher.cc",
|
| "message_pipe_dispatcher.h",
|
| + "node_channel.cc",
|
| + "node_channel.h",
|
| + "node_controller.cc",
|
| + "node_controller.h",
|
| "options_validation.h",
|
| "platform_handle_dispatcher.cc",
|
| "platform_handle_dispatcher.h",
|
| - "raw_channel.cc",
|
| - "raw_channel.h",
|
| - "raw_channel_posix.cc",
|
| - "raw_channel_win.cc",
|
| - "routed_raw_channel.cc",
|
| - "routed_raw_channel.h",
|
| + "ports_message.cc",
|
| + "ports_message.h",
|
| + "remote_message_pipe_bootstrap.cc",
|
| + "remote_message_pipe_bootstrap.h",
|
| "shared_buffer_dispatcher.cc",
|
| "shared_buffer_dispatcher.h",
|
| - "simple_dispatcher.cc",
|
| - "simple_dispatcher.h",
|
| - "transport_data.cc",
|
| - "transport_data.h",
|
| "wait_set_dispatcher.cc",
|
| "wait_set_dispatcher.h",
|
| "waiter.cc",
|
| @@ -96,11 +86,13 @@ static_library("system") {
|
| "../embedder",
|
| "../embedder:delegates",
|
| "../embedder:platform",
|
| + "ports",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| "//base/third_party/dynamic_annotations",
|
| + "//crypto",
|
| ]
|
|
|
| if (is_win) {
|
| @@ -144,25 +136,19 @@ source_set("test_utils") {
|
| # TODO(use_chrome_edk): remove "2"
|
| test("mojo_system_unittests2") {
|
| sources = [
|
| - "../test/multiprocess_test_helper_unittest.cc",
|
| "awakable_list_unittest.cc",
|
| "core_test_base.cc",
|
| "core_test_base.h",
|
| "core_unittest.cc",
|
| "data_pipe_unittest.cc",
|
| - "dispatcher_unittest.cc",
|
| - "message_in_transit_queue_unittest.cc",
|
| - "message_in_transit_test_utils.cc",
|
| - "message_in_transit_test_utils.h",
|
| "message_pipe_test_utils.cc",
|
| "message_pipe_test_utils.h",
|
| "message_pipe_unittest.cc",
|
| "multiprocess_message_pipe_unittest.cc",
|
| "options_validation_unittest.cc",
|
| "platform_handle_dispatcher_unittest.cc",
|
| - "raw_channel_unittest.cc",
|
| "shared_buffer_dispatcher_unittest.cc",
|
| - "simple_dispatcher_unittest.cc",
|
| + "shared_buffer_unittest.cc",
|
| "wait_set_dispatcher_unittest.cc",
|
| "waiter_test_utils.cc",
|
| "waiter_test_utils.h",
|
|
|