OLD | NEW |
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/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//third_party/icu/config.gni") | 10 import("//third_party/icu/config.gni") |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 #TODO(GYP): | 369 #TODO(GYP): |
370 #'variables': { | 370 #'variables': { |
371 #'conditions': [ | 371 #'conditions': [ |
372 #['component != "shared_library" and target_arch != "arm64" and target_arch !=
"x64" and profiling_full_stack_frames != 1', { | 372 #['component != "shared_library" and target_arch != "arm64" and target_arch !=
"x64" and profiling_full_stack_frames != 1', { |
373 ## Only enable the chromium linker on regular builds, since the | 373 ## Only enable the chromium linker on regular builds, since the |
374 ## component build crashes on Android 4.4. See b/11379966 | 374 ## component build crashes on Android 4.4. See b/11379966 |
375 #'use_chromium_linker': '1', | 375 #'use_chromium_linker': '1', |
376 #}], | 376 #}], |
377 #], | 377 #], |
378 #}, | 378 #}, |
| 379 if (!is_debug) { |
| 380 proguard_enabled = true |
| 381 proguard_configs = [ "shell/java/proguard.flags" ] |
| 382 } |
379 } | 383 } |
380 | 384 |
381 chrome_sync_shell_manifest = | 385 chrome_sync_shell_manifest = |
382 "$target_gen_dir/chrome_sync_shell_manifest/AndroidManifest.xml" | 386 "$target_gen_dir/chrome_sync_shell_manifest/AndroidManifest.xml" |
383 | 387 |
384 # GYP: //chrome/chrome_shell.gypi:chrome_sync_shell_manifest | 388 # GYP: //chrome/chrome_shell.gypi:chrome_sync_shell_manifest |
385 jinja_template("chrome_sync_shell_manifest") { | 389 jinja_template("chrome_sync_shell_manifest") { |
386 testonly = true | 390 testonly = true |
387 input = "sync_shell/java/AndroidManifest.xml.jinja2" | 391 input = "sync_shell/java/AndroidManifest.xml.jinja2" |
388 output = chrome_sync_shell_manifest | 392 output = chrome_sync_shell_manifest |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 "//content/public/test/android:content_java_test_support", | 457 "//content/public/test/android:content_java_test_support", |
454 "//third_party/android_tools:android_support_v13_java", | 458 "//third_party/android_tools:android_support_v13_java", |
455 "//third_party/android_tools:android_support_v7_appcompat_java", | 459 "//third_party/android_tools:android_support_v7_appcompat_java", |
456 "//ui/android:ui_java", | 460 "//ui/android:ui_java", |
457 ] | 461 ] |
458 DEPRECATED_java_in_dir = "shell/javatests/src" | 462 DEPRECATED_java_in_dir = "shell/javatests/src" |
459 } | 463 } |
460 | 464 |
461 # GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk | 465 # GYP: //chrome/chrome_tests.gypi:chrome_shell_test_apk |
462 android_apk("chrome_shell_test_apk") { | 466 android_apk("chrome_shell_test_apk") { |
| 467 if (!is_debug) { |
| 468 proguard_enabled = true |
| 469 } |
463 testonly = true | 470 testonly = true |
464 apk_under_test = ":chrome_shell_apk" | 471 apk_under_test = ":chrome_shell_apk" |
465 deps = [ | 472 deps = [ |
466 ":chrome_javatests", | 473 ":chrome_javatests", |
467 ":chrome_shell_test_java", | 474 ":chrome_shell_test_java", |
468 "//sync/android:sync_javatests", | 475 "//sync/android:sync_javatests", |
469 "//testing/android/broker:broker_java", | 476 "//testing/android/broker:broker_java", |
470 "//ui/android:ui_javatests", | 477 "//ui/android:ui_javatests", |
471 ] | 478 ] |
472 datadeps = [ | 479 datadeps = [ |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
775 defines = [] | 782 defines = [] |
776 } | 783 } |
777 | 784 |
778 proto_library("proto") { | 785 proto_library("proto") { |
779 sources = [ | 786 sources = [ |
780 "../browser/android/proto/client_discourse_context.proto", | 787 "../browser/android/proto/client_discourse_context.proto", |
781 "../browser/android/proto/delta_file.proto", | 788 "../browser/android/proto/delta_file.proto", |
782 ] | 789 ] |
783 proto_out_dir = "chrome/browser/android/proto" | 790 proto_out_dir = "chrome/browser/android/proto" |
784 } | 791 } |
OLD | NEW |