OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("mojo") { |
| 6 sources = [ |
| 7 "ipc_channel_mojo.cc", |
| 8 "ipc_channel_mojo.h", |
| 9 "ipc_message_pipe_reader.cc", |
| 10 "ipc_message_pipe_reader.h", |
| 11 ] |
| 12 |
| 13 deps = [ |
| 14 "//base", |
| 15 "//ipc", |
| 16 "//mojo/public/cpp/bindings", |
| 17 "//mojo/system", |
| 18 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. |
| 19 "//base/third_party/dynamic_annotations", |
| 20 ] |
| 21 } |
| 22 |
| 23 test("ipc_mojo_unittests") { |
| 24 sources = [ |
| 25 "ipc_channel_mojo_unittest.cc", |
| 26 "run_all_unittests.cc", |
| 27 ] |
| 28 |
| 29 deps = [ |
| 30 "//base", |
| 31 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. |
| 32 "//base/test:test_support", |
| 33 "//base/third_party/dynamic_annotations", |
| 34 "//ipc", |
| 35 "//ipc:test_support", |
| 36 "//ipc/mojo", |
| 37 "//mojo/environment:chromium", |
| 38 "//mojo/system", |
| 39 "//url", |
| 40 ] |
| 41 } |
OLD | NEW |