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("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 # Mark all targets as test only. | 8 # Mark all targets as test only. |
9 testonly = true | 9 testonly = true |
10 | 10 |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 "../javatests/src/org/chromium/android_webview/test/util/JavascriptEventObse
rver.java", | 202 "../javatests/src/org/chromium/android_webview/test/util/JavascriptEventObse
rver.java", |
203 "../javatests/src/org/chromium/android_webview/test/util/VideoSurfaceViewUti
ls.java", | 203 "../javatests/src/org/chromium/android_webview/test/util/VideoSurfaceViewUti
ls.java", |
204 "../javatests/src/org/chromium/android_webview/test/util/VideoTestUtil.java"
, | 204 "../javatests/src/org/chromium/android_webview/test/util/VideoTestUtil.java"
, |
205 "../javatests/src/org/chromium/android_webview/test/util/VideoTestWebServer.
java", | 205 "../javatests/src/org/chromium/android_webview/test/util/VideoTestWebServer.
java", |
206 ] | 206 ] |
207 isolate_file = "../android_webview_test_apk.isolate" | 207 isolate_file = "../android_webview_test_apk.isolate" |
208 } | 208 } |
209 | 209 |
210 # GYP: //android_webview/android_webview_tests.gypi:android_webview_unittests | 210 # GYP: //android_webview/android_webview_tests.gypi:android_webview_unittests |
211 test("android_webview_unittests") { | 211 test("android_webview_unittests") { |
| 212 # Tests do not require any data, but our dependencies pull a lot in. |
| 213 ignore_all_data_deps = true |
| 214 |
212 deps = [ | 215 deps = [ |
213 ":android_webview_unittests_assets", | 216 ":android_webview_unittests_assets", |
214 ":android_webview_unittests_java", | 217 ":android_webview_unittests_java", |
215 ":android_webview_unittests_jni", | 218 ":android_webview_unittests_jni", |
216 "//android_webview:common", | 219 "//android_webview:common", |
217 "//base/test:test_support", | 220 "//base/test:test_support", |
218 "//content/test:test_support", | 221 "//content/test:test_support", |
219 "//net:test_support", | 222 "//net:test_support", |
220 "//ui/base:ui_base_jni_headers", | 223 "//ui/base:ui_base_jni_headers", |
221 "//ui/gl", | 224 "//ui/gl", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 ] | 275 ] |
273 } | 276 } |
274 | 277 |
275 # GYP: //android_webview/android_webview_tests.gypi:libdrawgl | 278 # GYP: //android_webview/android_webview_tests.gypi:libdrawgl |
276 shared_library("libdrawgl") { | 279 shared_library("libdrawgl") { |
277 sources = [ | 280 sources = [ |
278 "shell/src/draw_gl/draw_gl.cc", | 281 "shell/src/draw_gl/draw_gl.cc", |
279 ] | 282 ] |
280 configs -= [ "//build/config/android:hide_native_jni_exports" ] | 283 configs -= [ "//build/config/android:hide_native_jni_exports" ] |
281 } | 284 } |
OLD | NEW |