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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 use_new_wrapper_types = false | 158 use_new_wrapper_types = false |
159 } | 159 } |
160 | 160 |
161 static_library("arc_test_support") { | 161 static_library("arc_test_support") { |
162 testonly = true | 162 testonly = true |
163 sources = [ | 163 sources = [ |
164 "test/fake_app_instance.cc", | 164 "test/fake_app_instance.cc", |
165 "test/fake_app_instance.h", | 165 "test/fake_app_instance.h", |
166 "test/fake_arc_bridge_bootstrap.cc", | 166 "test/fake_arc_bridge_bootstrap.cc", |
167 "test/fake_arc_bridge_bootstrap.h", | 167 "test/fake_arc_bridge_bootstrap.h", |
168 "test/fake_arc_bridge_instance.cc", | |
169 "test/fake_arc_bridge_instance.h", | |
170 "test/fake_arc_bridge_service.cc", | 168 "test/fake_arc_bridge_service.cc", |
171 "test/fake_arc_bridge_service.h", | 169 "test/fake_arc_bridge_service.h", |
172 "test/fake_bluetooth_instance.cc", | 170 "test/fake_bluetooth_instance.cc", |
173 "test/fake_bluetooth_instance.h", | 171 "test/fake_bluetooth_instance.h", |
174 "test/fake_intent_helper_instance.cc", | 172 "test/fake_intent_helper_instance.cc", |
175 "test/fake_intent_helper_instance.h", | 173 "test/fake_intent_helper_instance.h", |
176 "test/fake_notifications_instance.cc", | 174 "test/fake_notifications_instance.cc", |
177 "test/fake_notifications_instance.h", | 175 "test/fake_notifications_instance.h", |
178 "test/fake_policy_instance.cc", | 176 "test/fake_policy_instance.cc", |
179 "test/fake_policy_instance.h", | 177 "test/fake_policy_instance.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 "//mojo/public/cpp/system:system", | 211 "//mojo/public/cpp/system:system", |
214 "//testing/gtest", | 212 "//testing/gtest", |
215 "//ui/aura", | 213 "//ui/aura", |
216 "//ui/base:test_support", | 214 "//ui/base:test_support", |
217 "//ui/base/ime", | 215 "//ui/base/ime", |
218 "//ui/events", | 216 "//ui/events", |
219 "//ui/events:dom_keycode_converter", | 217 "//ui/events:dom_keycode_converter", |
220 "//url:url", | 218 "//url:url", |
221 ] | 219 ] |
222 } | 220 } |
OLD | NEW |