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

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

Issue 2031033002: Adding option for Proguard jar to be switched. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed import for annotation 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 ":chrome_public_test_apk_manifest", 552 ":chrome_public_test_apk_manifest",
553 ":chrome_test_java", 553 ":chrome_test_java",
554 "//chrome/android/webapk/shell_apk:shell_apk_javatests", 554 "//chrome/android/webapk/shell_apk:shell_apk_javatests",
555 ] 555 ]
556 additional_apks = [ 556 additional_apks = [
557 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk ", 557 "//chrome/android/webapk/shell_apk/javatests/dex_optimizer:dex_optimizer_apk ",
558 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support _apk", 558 "//chrome/test/android/chrome_public_test_support:chrome_public_test_support _apk",
559 "//net/android:net_test_support_apk", 559 "//net/android:net_test_support_apk",
560 ] 560 ]
561 isolate_file = "../chrome_public_test_apk.isolate" 561 isolate_file = "../chrome_public_test_apk.isolate"
562 proguard_enabled = !is_debug 562 proguard_enabled = !is_java_debug
563 } 563 }
564 564
565 android_library("chrome_sync_shell_test_apk_java") { 565 android_library("chrome_sync_shell_test_apk_java") {
566 testonly = true 566 testonly = true
567 567
568 # From java_sources.jni. 568 # From java_sources.jni.
569 java_files = sync_shell_test_java_sources 569 java_files = sync_shell_test_java_sources
570 570
571 deps = [ 571 deps = [
572 "//base:base_java", 572 "//base:base_java",
(...skipping 17 matching lines...) Expand all
590 590
591 # GYP: //chrome/android/chrome_apk.gyp:chrome_sync_shell_test_apk 591 # GYP: //chrome/android/chrome_apk.gyp:chrome_sync_shell_test_apk
592 instrumentation_test_apk("chrome_sync_shell_test_apk") { 592 instrumentation_test_apk("chrome_sync_shell_test_apk") {
593 apk_name = "ChromeSyncShellTest" 593 apk_name = "ChromeSyncShellTest"
594 apk_under_test = ":chrome_sync_shell_apk" 594 apk_under_test = ":chrome_sync_shell_apk"
595 android_manifest = chrome_sync_shell_test_apk_manifest 595 android_manifest = chrome_sync_shell_test_apk_manifest
596 deps = [ 596 deps = [
597 ":chrome_sync_shell_test_apk_java", 597 ":chrome_sync_shell_test_apk_java",
598 ":chrome_sync_shell_test_apk_manifest", 598 ":chrome_sync_shell_test_apk_manifest",
599 ] 599 ]
600 proguard_enabled = !is_debug 600 proguard_enabled = !is_java_debug
601 } 601 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698