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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 use_new_wrapper_types = false | 156 use_new_wrapper_types = false |
157 } | 157 } |
158 | 158 |
159 static_library("arc_test_support") { | 159 static_library("arc_test_support") { |
160 testonly = true | 160 testonly = true |
161 sources = [ | 161 sources = [ |
162 "test/fake_app_instance.cc", | 162 "test/fake_app_instance.cc", |
163 "test/fake_app_instance.h", | 163 "test/fake_app_instance.h", |
164 "test/fake_arc_bridge_bootstrap.cc", | 164 "test/fake_arc_bridge_bootstrap.cc", |
165 "test/fake_arc_bridge_bootstrap.h", | 165 "test/fake_arc_bridge_bootstrap.h", |
166 "test/fake_arc_bridge_instance.cc", | |
167 "test/fake_arc_bridge_instance.h", | |
168 "test/fake_arc_bridge_service.cc", | 166 "test/fake_arc_bridge_service.cc", |
169 "test/fake_arc_bridge_service.h", | 167 "test/fake_arc_bridge_service.h", |
170 "test/fake_bluetooth_instance.cc", | 168 "test/fake_bluetooth_instance.cc", |
171 "test/fake_bluetooth_instance.h", | 169 "test/fake_bluetooth_instance.h", |
172 "test/fake_intent_helper_instance.cc", | 170 "test/fake_intent_helper_instance.cc", |
173 "test/fake_intent_helper_instance.h", | 171 "test/fake_intent_helper_instance.h", |
174 "test/fake_notifications_instance.cc", | 172 "test/fake_notifications_instance.cc", |
175 "test/fake_notifications_instance.h", | 173 "test/fake_notifications_instance.h", |
176 "test/fake_policy_instance.cc", | 174 "test/fake_policy_instance.cc", |
177 "test/fake_policy_instance.h", | 175 "test/fake_policy_instance.h", |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 ] | 260 ] |
263 | 261 |
264 deps = [ | 262 deps = [ |
265 ":arc_standalone", | 263 ":arc_standalone", |
266 ":arc_standalone_service", | 264 ":arc_standalone_service", |
267 "//base", | 265 "//base", |
268 "//ipc:ipc", | 266 "//ipc:ipc", |
269 "//mojo/edk/system", | 267 "//mojo/edk/system", |
270 ] | 268 ] |
271 } | 269 } |
OLD | NEW |