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