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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("../../../mojo/public/tools/bindings/mojom.gni") | 7 import("../../../mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 "mach_port_relay.cc", | 105 "mach_port_relay.cc", |
106 "mach_port_relay.h", | 106 "mach_port_relay.h", |
107 ] | 107 ] |
108 } | 108 } |
109 | 109 |
110 if (is_nacl && !is_nacl_nonsfi) { | 110 if (is_nacl && !is_nacl_nonsfi) { |
111 sources -= [ | 111 sources -= [ |
112 "broker_host_posix.cc", | 112 "broker_host_posix.cc", |
113 "broker_posix.cc", | 113 "broker_posix.cc", |
114 "channel_posix.cc", | 114 "channel_posix.cc", |
| 115 "remote_message_pipe_bootstrap.cc", |
115 ] | 116 ] |
116 } | 117 } |
117 | 118 |
118 allow_circular_includes_from = [ "//mojo/edk/embedder" ] | 119 allow_circular_includes_from = [ "//mojo/edk/embedder" ] |
119 } | 120 } |
120 | 121 |
121 group("tests") { | 122 group("tests") { |
122 testonly = true | 123 testonly = true |
123 deps = [ | 124 deps = [ |
124 ":mojo_system_unittests", | 125 ":mojo_system_unittests", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 ":test_utils", | 202 ":test_utils", |
202 "//base", | 203 "//base", |
203 "//base/test:test_support", | 204 "//base/test:test_support", |
204 "//mojo/edk/system", | 205 "//mojo/edk/system", |
205 "//mojo/edk/test:run_all_perftests", | 206 "//mojo/edk/test:run_all_perftests", |
206 "//mojo/edk/test:test_support", | 207 "//mojo/edk/test:test_support", |
207 "//testing/gtest", | 208 "//testing/gtest", |
208 ] | 209 ] |
209 } | 210 } |
210 } | 211 } |
OLD | NEW |