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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 "test/fake_app_instance.cc", | 171 "test/fake_app_instance.cc", |
172 "test/fake_app_instance.h", | 172 "test/fake_app_instance.h", |
173 "test/fake_arc_bridge_bootstrap.cc", | 173 "test/fake_arc_bridge_bootstrap.cc", |
174 "test/fake_arc_bridge_bootstrap.h", | 174 "test/fake_arc_bridge_bootstrap.h", |
175 "test/fake_arc_bridge_instance.cc", | 175 "test/fake_arc_bridge_instance.cc", |
176 "test/fake_arc_bridge_instance.h", | 176 "test/fake_arc_bridge_instance.h", |
177 "test/fake_arc_bridge_service.cc", | 177 "test/fake_arc_bridge_service.cc", |
178 "test/fake_arc_bridge_service.h", | 178 "test/fake_arc_bridge_service.h", |
179 "test/fake_bluetooth_instance.cc", | 179 "test/fake_bluetooth_instance.cc", |
180 "test/fake_bluetooth_instance.h", | 180 "test/fake_bluetooth_instance.h", |
| 181 "test/fake_intent_helper_instance.cc", |
| 182 "test/fake_intent_helper_instance.h", |
181 "test/fake_notifications_instance.cc", | 183 "test/fake_notifications_instance.cc", |
182 "test/fake_notifications_instance.h", | 184 "test/fake_notifications_instance.h", |
183 "test/fake_policy_instance.cc", | 185 "test/fake_policy_instance.cc", |
184 "test/fake_policy_instance.h", | 186 "test/fake_policy_instance.h", |
185 ] | 187 ] |
186 | 188 |
187 deps = [ | 189 deps = [ |
188 ":arc", | 190 ":arc", |
189 ":arc_base", | 191 ":arc_base", |
190 ":arc_bindings", | 192 ":arc_bindings", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 ] | 270 ] |
269 | 271 |
270 deps = [ | 272 deps = [ |
271 ":arc_standalone", | 273 ":arc_standalone", |
272 ":arc_standalone_service", | 274 ":arc_standalone_service", |
273 "//base", | 275 "//base", |
274 "//ipc:ipc", | 276 "//ipc:ipc", |
275 "//mojo/edk/system", | 277 "//mojo/edk/system", |
276 ] | 278 ] |
277 } | 279 } |
OLD | NEW |