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

Side by Side Diff: chrome/android/BUILD.gn

Issue 2039303002: Sanitize JSON string before parsing it. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix deps Created 4 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//build_overrides/v8.gni") 7 import("//build_overrides/v8.gni")
8 import("//chrome/android/chrome_public_apk_tmpl.gni") 8 import("//chrome/android/chrome_public_apk_tmpl.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//chrome/version.gni") 10 import("//chrome/version.gni")
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ":document_tab_model_info_proto_java", 195 ":document_tab_model_info_proto_java",
196 "//components/bookmarks/common/android:bookmarks_java", 196 "//components/bookmarks/common/android:bookmarks_java",
197 "//components/dom_distiller/android:dom_distiller_content_java", 197 "//components/dom_distiller/android:dom_distiller_content_java",
198 "//components/dom_distiller/android:dom_distiller_core_java", 198 "//components/dom_distiller/android:dom_distiller_core_java",
199 "//components/gcm_driver/android:gcm_driver_java", 199 "//components/gcm_driver/android:gcm_driver_java",
200 "//components/gcm_driver/instance_id/android:instance_id_driver_java", 200 "//components/gcm_driver/instance_id/android:instance_id_driver_java",
201 "//components/invalidation/impl:java", 201 "//components/invalidation/impl:java",
202 "//components/navigation_interception/android:navigation_interception_java ", 202 "//components/navigation_interception/android:navigation_interception_java ",
203 "//components/policy/android:policy_java", 203 "//components/policy/android:policy_java",
204 "//components/precache/android:precache_java", 204 "//components/precache/android:precache_java",
205 "//components/safe_json/android:safe_json_java",
205 "//components/service_tab_launcher:service_tab_launcher_java", 206 "//components/service_tab_launcher:service_tab_launcher_java",
206 "//components/signin/core/browser/android:java", 207 "//components/signin/core/browser/android:java",
207 "//components/web_contents_delegate_android:web_contents_delegate_android_ java", 208 "//components/web_contents_delegate_android:web_contents_delegate_android_ java",
208 "//sync/android:sync_java", 209 "//sync/android:sync_java",
209 ] 210 ]
210 } 211 }
211 } 212 }
212 213
213 # GYP: //chrome/chrome_browser.gypi:activity_type_ids_java 214 # GYP: //chrome/chrome_browser.gypi:activity_type_ids_java
214 # GYP: //chrome/chrome_browser.gypi:connectivity_check_result_java 215 # GYP: //chrome/chrome_browser.gypi:connectivity_check_result_java
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 instrumentation_test_apk("chrome_sync_shell_test_apk") { 593 instrumentation_test_apk("chrome_sync_shell_test_apk") {
593 apk_name = "ChromeSyncShellTest" 594 apk_name = "ChromeSyncShellTest"
594 apk_under_test = ":chrome_sync_shell_apk" 595 apk_under_test = ":chrome_sync_shell_apk"
595 android_manifest = chrome_sync_shell_test_apk_manifest 596 android_manifest = chrome_sync_shell_test_apk_manifest
596 deps = [ 597 deps = [
597 ":chrome_sync_shell_test_apk_java", 598 ":chrome_sync_shell_test_apk_java",
598 ":chrome_sync_shell_test_apk_manifest", 599 ":chrome_sync_shell_test_apk_manifest",
599 ] 600 ]
600 proguard_enabled = !is_debug 601 proguard_enabled = !is_debug
601 } 602 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698