OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 static_library("arc") { | 8 static_library("arc") { |
9 sources = [ | 9 sources = [ |
10 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "test/fake_app_instance.cc", | 176 "test/fake_app_instance.cc", |
177 "test/fake_app_instance.h", | 177 "test/fake_app_instance.h", |
178 "test/fake_arc_bridge_bootstrap.cc", | 178 "test/fake_arc_bridge_bootstrap.cc", |
179 "test/fake_arc_bridge_bootstrap.h", | 179 "test/fake_arc_bridge_bootstrap.h", |
180 "test/fake_arc_bridge_instance.cc", | 180 "test/fake_arc_bridge_instance.cc", |
181 "test/fake_arc_bridge_instance.h", | 181 "test/fake_arc_bridge_instance.h", |
182 "test/fake_arc_bridge_service.cc", | 182 "test/fake_arc_bridge_service.cc", |
183 "test/fake_arc_bridge_service.h", | 183 "test/fake_arc_bridge_service.h", |
184 "test/fake_bluetooth_instance.cc", | 184 "test/fake_bluetooth_instance.cc", |
185 "test/fake_bluetooth_instance.h", | 185 "test/fake_bluetooth_instance.h", |
| 186 "test/fake_intent_helper_instance.cc", |
| 187 "test/fake_intent_helper_instance.h", |
186 "test/fake_notifications_instance.cc", | 188 "test/fake_notifications_instance.cc", |
187 "test/fake_notifications_instance.h", | 189 "test/fake_notifications_instance.h", |
188 "test/fake_policy_instance.cc", | 190 "test/fake_policy_instance.cc", |
189 "test/fake_policy_instance.h", | 191 "test/fake_policy_instance.h", |
190 ] | 192 ] |
191 | 193 |
192 deps = [ | 194 deps = [ |
193 ":arc", | 195 ":arc", |
194 ":arc_base", | 196 ":arc_base", |
195 ":arc_bindings", | 197 ":arc_bindings", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 ] | 275 ] |
274 | 276 |
275 deps = [ | 277 deps = [ |
276 ":arc_standalone", | 278 ":arc_standalone", |
277 ":arc_standalone_service", | 279 ":arc_standalone_service", |
278 "//base", | 280 "//base", |
279 "//ipc:ipc", | 281 "//ipc:ipc", |
280 "//mojo/edk/system", | 282 "//mojo/edk/system", |
281 ] | 283 ] |
282 } | 284 } |
OLD | NEW |