| 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 mojom("client_channel") { | 8 mojom("client_channel") { |
| 9 sources = [ | 9 sources = [ |
| 10 "client_channel.mojom", | 10 "client_channel.mojom", |
| 11 ] | 11 ] |
| 12 } | 12 } |
| 13 | 13 |
| 14 component("mojo") { | 14 component("mojo") { |
| 15 sources = [ | 15 sources = [ |
| 16 "client_channel.mojom", | |
| 17 "async_handle_waiter.cc", | 16 "async_handle_waiter.cc", |
| 18 "async_handle_waiter.h", | 17 "async_handle_waiter.h", |
| 18 "client_channel.mojom", |
| 19 "ipc_channel_mojo.cc", | 19 "ipc_channel_mojo.cc", |
| 20 "ipc_channel_mojo.h", | 20 "ipc_channel_mojo.h", |
| 21 "ipc_channel_mojo_host.cc", | 21 "ipc_channel_mojo_host.cc", |
| 22 "ipc_channel_mojo_host.h", | 22 "ipc_channel_mojo_host.h", |
| 23 "ipc_message_pipe_reader.cc", |
| 24 "ipc_message_pipe_reader.h", |
| 23 "ipc_mojo_bootstrap.cc", | 25 "ipc_mojo_bootstrap.cc", |
| 24 "ipc_mojo_bootstrap.h", | 26 "ipc_mojo_bootstrap.h", |
| 25 "ipc_mojo_handle_attachment.cc", | 27 "ipc_mojo_handle_attachment.cc", |
| 26 "ipc_mojo_handle_attachment.h", | 28 "ipc_mojo_handle_attachment.h", |
| 27 "ipc_mojo_message_helper.cc", | 29 "ipc_mojo_message_helper.cc", |
| 28 "ipc_mojo_message_helper.h", | 30 "ipc_mojo_message_helper.h", |
| 29 "ipc_message_pipe_reader.cc", | |
| 30 "ipc_message_pipe_reader.h", | |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 defines = [ "IPC_MOJO_IMPLEMENTATION" ] | 33 defines = [ "IPC_MOJO_IMPLEMENTATION" ] |
| 34 | 34 |
| 35 deps = [ | 35 deps = [ |
| 36 "//base", | 36 "//base", |
| 37 "//base/third_party/dynamic_annotations", | 37 "//base/third_party/dynamic_annotations", |
| 38 "//ipc", | 38 "//ipc", |
| 39 "//mojo/environment:chromium", | 39 "//mojo/environment:chromium", |
| 40 "//third_party/mojo/src/mojo/edk/system", | 40 "//third_party/mojo/src/mojo/edk/system", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "//base/test:test_support_perf", | 77 "//base/test:test_support_perf", |
| 78 "//base/third_party/dynamic_annotations", | 78 "//base/third_party/dynamic_annotations", |
| 79 "//ipc", | 79 "//ipc", |
| 80 "//ipc:test_support", | 80 "//ipc:test_support", |
| 81 "//ipc/mojo", | 81 "//ipc/mojo", |
| 82 "//mojo/environment:chromium", | 82 "//mojo/environment:chromium", |
| 83 "//third_party/mojo/src/mojo/edk/system", | 83 "//third_party/mojo/src/mojo/edk/system", |
| 84 "//url", | 84 "//url", |
| 85 ] | 85 ] |
| 86 } | 86 } |
| OLD | NEW |