| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 mojom("client_channel") { | 8 mojom("client_channel") { |
| 9 sources = [ | 9 sources = [ |
| 10 "client_channel.mojom", | 10 "client_channel.mojom", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "ipc_message_pipe_reader.h", | 30 "ipc_message_pipe_reader.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 defines = [ "IPC_MOJO_IMPLEMENTATION" ] | 33 defines = [ "IPC_MOJO_IMPLEMENTATION" ] |
| 34 | 34 |
| 35 deps = [ | 35 deps = [ |
| 36 "//base", | 36 "//base", |
| 37 "//base/third_party/dynamic_annotations", | 37 "//base/third_party/dynamic_annotations", |
| 38 "//ipc", | 38 "//ipc", |
| 39 "//mojo/environment:chromium", | 39 "//mojo/environment:chromium", |
| 40 "//third_party/mojo/src/mojo/edk/system", |
| 41 "//third_party/mojo/src/mojo/public/c/environment:environment", |
| 40 "//third_party/mojo/src/mojo/public/cpp/bindings", | 42 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 41 "//third_party/mojo/src/mojo/edk/system", | |
| 42 ":client_channel", | 43 ":client_channel", |
| 43 ] | 44 ] |
| 44 } | 45 } |
| 45 | 46 |
| 46 test("ipc_mojo_unittests") { | 47 test("ipc_mojo_unittests") { |
| 47 sources = [ | 48 sources = [ |
| 48 "async_handle_waiter_unittest.cc", | 49 "async_handle_waiter_unittest.cc", |
| 49 "ipc_channel_mojo_unittest.cc", | 50 "ipc_channel_mojo_unittest.cc", |
| 50 "ipc_mojo_bootstrap_unittest.cc", | 51 "ipc_mojo_bootstrap_unittest.cc", |
| 51 "run_all_unittests.cc", | 52 "run_all_unittests.cc", |
| 52 ] | 53 ] |
| 53 | 54 |
| 54 deps = [ | 55 deps = [ |
| 55 "//base", | 56 "//base", |
| 56 "//base/test:test_support", | 57 "//base/test:test_support", |
| 57 "//base/third_party/dynamic_annotations", | 58 "//base/third_party/dynamic_annotations", |
| 58 "//ipc", | 59 "//ipc", |
| 59 "//ipc:test_support", | 60 "//ipc:test_support", |
| 60 "//ipc/mojo", | 61 "//ipc/mojo", |
| 61 "//mojo/environment:chromium", | 62 "//mojo/environment:chromium", |
| 63 "//testing/gtest", |
| 62 "//third_party/mojo/src/mojo/edk/system", | 64 "//third_party/mojo/src/mojo/edk/system", |
| 63 "//url", | 65 "//url", |
| 64 ] | 66 ] |
| 65 } | 67 } |
| 66 | 68 |
| 67 test("ipc_mojo_perftests") { | 69 test("ipc_mojo_perftests") { |
| 68 sources = [ | 70 sources = [ |
| 69 "ipc_mojo_perftest.cc", | 71 "ipc_mojo_perftest.cc", |
| 70 ] | 72 ] |
| 71 | 73 |
| 72 deps = [ | 74 deps = [ |
| 73 "//base", | 75 "//base", |
| 74 "//base/test:test_support", | 76 "//base/test:test_support", |
| 75 "//base/test:test_support_perf", | 77 "//base/test:test_support_perf", |
| 76 "//base/third_party/dynamic_annotations", | 78 "//base/third_party/dynamic_annotations", |
| 77 "//ipc", | 79 "//ipc", |
| 78 "//ipc:test_support", | 80 "//ipc:test_support", |
| 79 "//ipc/mojo", | 81 "//ipc/mojo", |
| 80 "//mojo/environment:chromium", | 82 "//mojo/environment:chromium", |
| 81 "//third_party/mojo/src/mojo/edk/system", | 83 "//third_party/mojo/src/mojo/edk/system", |
| 82 "//url", | 84 "//url", |
| 83 ] | 85 ] |
| 84 } | 86 } |
| OLD | NEW |