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", |
| 10 "ipc_channel_mojo_readers.h", |
9 "ipc_message_pipe_reader.cc", | 11 "ipc_message_pipe_reader.cc", |
10 "ipc_message_pipe_reader.h", | 12 "ipc_message_pipe_reader.h", |
11 ] | 13 ] |
12 | 14 |
13 defines = [ "IPC_MOJO_IMPLEMENTATION" ] | 15 defines = [ "IPC_MOJO_IMPLEMENTATION" ] |
14 | 16 |
15 deps = [ | 17 deps = [ |
16 "//base", | 18 "//base", |
17 "//base/third_party/dynamic_annotations", | 19 "//base/third_party/dynamic_annotations", |
18 "//ipc", | 20 "//ipc", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "//base/test:test_support_perf", | 54 "//base/test:test_support_perf", |
53 "//base/third_party/dynamic_annotations", | 55 "//base/third_party/dynamic_annotations", |
54 "//ipc", | 56 "//ipc", |
55 "//ipc:test_support", | 57 "//ipc:test_support", |
56 "//ipc/mojo", | 58 "//ipc/mojo", |
57 "//mojo/environment:chromium", | 59 "//mojo/environment:chromium", |
58 "//mojo/system", | 60 "//mojo/system", |
59 "//url", | 61 "//url", |
60 ] | 62 ] |
61 } | 63 } |
OLD | NEW |