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 component("mojo") { | 5 component("mojo") { |
6 sources = [ | 6 sources = [ |
7 "ipc_channel_mojo.cc", | 7 "ipc_channel_mojo.cc", |
8 "ipc_channel_mojo.h", | 8 "ipc_channel_mojo.h", |
| 9 "ipc_channel_mojo_host.cc", |
| 10 "ipc_channel_mojo_host.h", |
9 "ipc_channel_mojo_readers.cc", | 11 "ipc_channel_mojo_readers.cc", |
10 "ipc_channel_mojo_readers.h", | 12 "ipc_channel_mojo_readers.h", |
| 13 "ipc_mojo_bootstrap.cc", |
| 14 "ipc_mojo_bootstrap.h", |
11 "ipc_message_pipe_reader.cc", | 15 "ipc_message_pipe_reader.cc", |
12 "ipc_message_pipe_reader.h", | 16 "ipc_message_pipe_reader.h", |
13 ] | 17 ] |
14 | 18 |
15 defines = [ "IPC_MOJO_IMPLEMENTATION" ] | 19 defines = [ "IPC_MOJO_IMPLEMENTATION" ] |
16 | 20 |
17 deps = [ | 21 deps = [ |
18 "//base", | 22 "//base", |
19 "//base/third_party/dynamic_annotations", | 23 "//base/third_party/dynamic_annotations", |
20 "//ipc", | 24 "//ipc", |
21 "//mojo/environment:chromium", | 25 "//mojo/environment:chromium", |
22 "//mojo/public/cpp/bindings", | 26 "//mojo/public/cpp/bindings", |
23 "//mojo/system", | 27 "//mojo/system", |
24 ] | 28 ] |
25 } | 29 } |
26 | 30 |
27 test("ipc_mojo_unittests") { | 31 test("ipc_mojo_unittests") { |
28 sources = [ | 32 sources = [ |
29 "ipc_channel_mojo_unittest.cc", | 33 "ipc_channel_mojo_unittest.cc", |
| 34 "ipc_mojo_bootstrap_unittest.cc", |
30 "run_all_unittests.cc", | 35 "run_all_unittests.cc", |
31 ] | 36 ] |
32 | 37 |
33 deps = [ | 38 deps = [ |
34 "//base", | 39 "//base", |
35 "//base/test:test_support", | 40 "//base/test:test_support", |
36 "//base/third_party/dynamic_annotations", | 41 "//base/third_party/dynamic_annotations", |
37 "//ipc", | 42 "//ipc", |
38 "//ipc:test_support", | 43 "//ipc:test_support", |
39 "//ipc/mojo", | 44 "//ipc/mojo", |
(...skipping 14 matching lines...) Expand all Loading... |
54 "//base/test:test_support_perf", | 59 "//base/test:test_support_perf", |
55 "//base/third_party/dynamic_annotations", | 60 "//base/third_party/dynamic_annotations", |
56 "//ipc", | 61 "//ipc", |
57 "//ipc:test_support", | 62 "//ipc:test_support", |
58 "//ipc/mojo", | 63 "//ipc/mojo", |
59 "//mojo/environment:chromium", | 64 "//mojo/environment:chromium", |
60 "//mojo/system", | 65 "//mojo/system", |
61 "//url", | 66 "//url", |
62 ] | 67 ] |
63 } | 68 } |
OLD | NEW |