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", | 16 "client_channel.mojom", |
17 "async_handle_waiter.cc", | 17 "async_handle_waiter.cc", |
18 "async_handle_waiter.h", | 18 "async_handle_waiter.h", |
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_mojo_bootstrap.cc", | 23 "ipc_mojo_bootstrap.cc", |
24 "ipc_mojo_bootstrap.h", | 24 "ipc_mojo_bootstrap.h", |
| 25 "ipc_mojo_handle_attachment.cc", |
| 26 "ipc_mojo_handle_attachment.h", |
| 27 "ipc_mojo_message_helper.cc", |
| 28 "ipc_mojo_message_helper.h", |
25 "ipc_message_pipe_reader.cc", | 29 "ipc_message_pipe_reader.cc", |
26 "ipc_message_pipe_reader.h", | 30 "ipc_message_pipe_reader.h", |
27 ] | 31 ] |
28 | 32 |
29 defines = [ "IPC_MOJO_IMPLEMENTATION" ] | 33 defines = [ "IPC_MOJO_IMPLEMENTATION" ] |
30 | 34 |
31 deps = [ | 35 deps = [ |
32 "//base", | 36 "//base", |
33 "//base/third_party/dynamic_annotations", | 37 "//base/third_party/dynamic_annotations", |
34 "//ipc", | 38 "//ipc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "//base/test:test_support_perf", | 75 "//base/test:test_support_perf", |
72 "//base/third_party/dynamic_annotations", | 76 "//base/third_party/dynamic_annotations", |
73 "//ipc", | 77 "//ipc", |
74 "//ipc:test_support", | 78 "//ipc:test_support", |
75 "//ipc/mojo", | 79 "//ipc/mojo", |
76 "//mojo/environment:chromium", | 80 "//mojo/environment:chromium", |
77 "//third_party/mojo/src/mojo/edk/system", | 81 "//third_party/mojo/src/mojo/edk/system", |
78 "//url", | 82 "//url", |
79 ] | 83 ] |
80 } | 84 } |
OLD | NEW |