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 | |
215 deps = [ | 212 deps = [ |
216 ":android_webview_unittests_assets", | 213 ":android_webview_unittests_assets", |
217 ":android_webview_unittests_java", | 214 ":android_webview_unittests_java", |
218 ":android_webview_unittests_jni", | 215 ":android_webview_unittests_jni", |
219 "//android_webview:common", | 216 "//android_webview:common", |
220 "//base/test:test_support", | 217 "//base/test:test_support", |
221 "//content/test:test_support", | 218 "//content/test:test_support", |
222 "//net:test_support", | 219 "//net:test_support", |
223 "//ui/base:ui_base_jni_headers", | 220 "//ui/base:ui_base_jni_headers", |
224 "//ui/gl", | 221 "//ui/gl", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 ] | 272 ] |
276 } | 273 } |
277 | 274 |
278 # GYP: //android_webview/android_webview_tests.gypi:libdrawgl | 275 # GYP: //android_webview/android_webview_tests.gypi:libdrawgl |
279 shared_library("libdrawgl") { | 276 shared_library("libdrawgl") { |
280 sources = [ | 277 sources = [ |
281 "shell/src/draw_gl/draw_gl.cc", | 278 "shell/src/draw_gl/draw_gl.cc", |
282 ] | 279 ] |
283 configs -= [ "//build/config/android:hide_native_jni_exports" ] | 280 configs -= [ "//build/config/android:hide_native_jni_exports" ] |
284 } | 281 } |
OLD | NEW |