| 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_message_pipe_reader.cc", | 9 "ipc_message_pipe_reader.cc", |
| 10 "ipc_message_pipe_reader.h", | 10 "ipc_message_pipe_reader.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "//base/test:test_support", | 33 "//base/test:test_support", |
| 34 "//base/third_party/dynamic_annotations", | 34 "//base/third_party/dynamic_annotations", |
| 35 "//ipc", | 35 "//ipc", |
| 36 "//ipc:test_support", | 36 "//ipc:test_support", |
| 37 "//ipc/mojo", | 37 "//ipc/mojo", |
| 38 "//mojo/environment:chromium", | 38 "//mojo/environment:chromium", |
| 39 "//mojo/system", | 39 "//mojo/system", |
| 40 "//url", | 40 "//url", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 |
| 44 test("ipc_mojo_perftests") { |
| 45 sources = [ |
| 46 "ipc_mojo_perftest.cc", |
| 47 ] |
| 48 |
| 49 deps = [ |
| 50 "//base", |
| 51 "//base/test:test_support", |
| 52 "//base/test:test_support_perf", |
| 53 "//base/third_party/dynamic_annotations", |
| 54 "//ipc", |
| 55 "//ipc:test_support", |
| 56 "//ipc/mojo", |
| 57 "//mojo/environment:chromium", |
| 58 "//mojo/system", |
| 59 "//url", |
| 60 ] |
| 61 } |
| OLD | NEW |