| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 mojom("mojom") { | 8 mojom("mojom") { |
| 9 sources = [ | 9 sources = [ |
| 10 "ipc.mojom", | 10 "ipc.mojom", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 deps = [ | 32 deps = [ |
| 33 ":mojom", | 33 ":mojom", |
| 34 "//base", | 34 "//base", |
| 35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
| 36 "//ipc", | 36 "//ipc", |
| 37 "//mojo/public/c/system", | 37 "//mojo/public/c/system", |
| 38 "//mojo/public/cpp/bindings", | 38 "//mojo/public/cpp/bindings", |
| 39 ] | 39 ] |
| 40 } | 40 } |
| 41 | 41 |
| 42 source_set("ipc_support") { | |
| 43 sources = [ | |
| 44 "scoped_ipc_support.cc", | |
| 45 "scoped_ipc_support.h", | |
| 46 ] | |
| 47 | |
| 48 deps = [ | |
| 49 "//base", | |
| 50 "//mojo/edk/system", | |
| 51 ] | |
| 52 } | |
| 53 | |
| 54 test("ipc_mojo_unittests") { | 42 test("ipc_mojo_unittests") { |
| 55 sources = [ | 43 sources = [ |
| 56 "ipc_channel_mojo_unittest.cc", | 44 "ipc_channel_mojo_unittest.cc", |
| 57 "ipc_mojo_bootstrap_unittest.cc", | 45 "ipc_mojo_bootstrap_unittest.cc", |
| 58 "run_all_unittests.cc", | 46 "run_all_unittests.cc", |
| 59 ] | 47 ] |
| 60 | 48 |
| 61 deps = [ | 49 deps = [ |
| 62 ":mojo", | 50 ":mojo", |
| 63 ":mojom", | 51 ":mojom", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 90 "//mojo/edk/system", | 78 "//mojo/edk/system", |
| 91 "//mojo/edk/test:test_support", | 79 "//mojo/edk/test:test_support", |
| 92 "//mojo/edk/test:test_support_impl", | 80 "//mojo/edk/test:test_support_impl", |
| 93 "//url", | 81 "//url", |
| 94 ] | 82 ] |
| 95 | 83 |
| 96 if (is_linux && !is_component_build) { | 84 if (is_linux && !is_component_build) { |
| 97 public_configs = [ "//build/config/gcc:rpath_for_built_shared_libraries" ] | 85 public_configs = [ "//build/config/gcc:rpath_for_built_shared_libraries" ] |
| 98 } | 86 } |
| 99 } | 87 } |
| OLD | NEW |