Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Side by Side Diff: android_webview/test/BUILD.gn

Issue 2628863004: [Android WebView] Ensure we have user consent before uploading minidumps (Closed)
Patch Set: Check user consent before copying minidumps, delete minidumps in app dir if no consent, add unit te… Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 configs -= [ "//build/config/android:hide_native_jni_exports" ] 96 configs -= [ "//build/config/android:hide_native_jni_exports" ]
97 } 97 }
98 98
99 instrumentation_test_apk("android_webview_test_apk") { 99 instrumentation_test_apk("android_webview_test_apk") {
100 apk_name = "AndroidWebViewTest" 100 apk_name = "AndroidWebViewTest"
101 apk_under_test = ":android_webview_apk" 101 apk_under_test = ":android_webview_apk"
102 android_manifest = "../javatests/AndroidManifest.xml" 102 android_manifest = "../javatests/AndroidManifest.xml"
103 deps = [ 103 deps = [
104 "//android_webview:android_webview_crash_services_java", 104 "//android_webview:android_webview_crash_services_java",
105 "//android_webview:android_webview_java", 105 "//android_webview:android_webview_java",
106 "//android_webview:android_webview_platform_services_java",
106 "//base:base_java", 107 "//base:base_java",
107 "//base:base_java_test_support", 108 "//base:base_java_test_support",
108 "//components/minidump_uploader:minidump_uploader_java", 109 "//components/minidump_uploader:minidump_uploader_java",
109 "//components/minidump_uploader:minidump_uploader_javatests", 110 "//components/minidump_uploader:minidump_uploader_javatests",
110 "//components/policy/android:policy_java", 111 "//components/policy/android:policy_java",
111 "//components/policy/android:policy_java_test_support", 112 "//components/policy/android:policy_java_test_support",
112 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va", 113 "//components/web_contents_delegate_android:web_contents_delegate_android_ja va",
113 "//content/public/android:content_java", 114 "//content/public/android:content_java",
114 "//content/public/test/android:content_java_test_support", 115 "//content/public/test/android:content_java_test_support",
115 "//device/geolocation:geolocation_java", 116 "//device/geolocation:geolocation_java",
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "../unittestjava/src/org/chromium/android_webview/unittest/MockAwContentsCli entBridge.java", 285 "../unittestjava/src/org/chromium/android_webview/unittest/MockAwContentsCli entBridge.java",
285 ] 286 ]
286 } 287 }
287 288
288 shared_library("libdrawgl") { 289 shared_library("libdrawgl") {
289 sources = [ 290 sources = [
290 "shell/src/draw_gl/draw_gl.cc", 291 "shell/src/draw_gl/draw_gl.cc",
291 ] 292 ]
292 configs -= [ "//build/config/android:hide_native_jni_exports" ] 293 configs -= [ "//build/config/android:hide_native_jni_exports" ]
293 } 294 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698