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