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

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

Issue 2354803002: Create Monochrome-specific repack() targets (Closed)
Patch Set: Created 4 years, 3 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/util/process_version.gni") 7 import("//build/util/process_version.gni")
8 import("//build_overrides/v8.gni") 8 import("//build_overrides/v8.gni")
9 import("//chrome/android/chrome_public_apk_tmpl.gni") 9 import("//chrome/android/chrome_public_apk_tmpl.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 # Overrides icon / name defined in chrome_java_resources. 479 # Overrides icon / name defined in chrome_java_resources.
480 android_resources("chrome_public_apk_resources") { 480 android_resources("chrome_public_apk_resources") {
481 resource_dirs = [ "java/res_chromium" ] 481 resource_dirs = [ "java/res_chromium" ]
482 482
483 # Dep needed to ensure override works properly. 483 # Dep needed to ensure override works properly.
484 deps = [ 484 deps = [
485 ":chrome_java_resources", 485 ":chrome_java_resources",
486 ] 486 ]
487 } 487 }
488 488
489 android_assets("chrome_public_apk_assets") { 489 # TODO(agrieve): Delete once downstream no longer references this target.
490 java_group("chrome_public_apk_assets") {
491 deps = [
492 ":chrome_public_non_pak_assets",
493 ":chrome_public_pak_assets",
494 ]
495 }
496
497 java_group("chrome_public_non_pak_assets") {
498 deps = [
499 "//chrome/android/webapk/libs/runtime_library:runtime_library_assets",
500 "//third_party/icu:icu_assets",
501 "//v8:v8_external_startup_data_assets",
502 ]
503 }
504
505 android_assets("chrome_public_pak_assets") {
490 sources = [ 506 sources = [
491 "$root_out_dir/chrome_100_percent.pak", 507 "$root_out_dir/chrome_100_percent.pak",
492 "$root_out_dir/resources.pak", 508 "$root_out_dir/resources.pak",
493 ] 509 ]
494 disable_compression = true 510 disable_compression = true
495 511
496 deps = [ 512 deps = [
497 "//chrome:packed_extra_resources",
498 "//chrome:packed_resources", 513 "//chrome:packed_resources",
499 "//chrome/android/webapk/libs/runtime_library:runtime_library_assets", 514 "//chrome/android/webapk/libs/runtime_library:runtime_library_assets",
500 "//third_party/icu:icu_assets", 515 "//third_party/icu:icu_assets",
501 "//v8:v8_external_startup_data_assets", 516 "//v8:v8_external_startup_data_assets",
502 ] 517 ]
503 } 518 }
504 519
505 jinja_template_resources("chrome_public_apk_template_resources") { 520 jinja_template_resources("chrome_public_apk_template_resources") {
506 resources = [ 521 resources = [
507 "java/res_template/xml/chromebackupscheme.xml", 522 "java/res_template/xml/chromebackupscheme.xml",
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 instrumentation_test_apk("chrome_sync_shell_test_apk") { 709 instrumentation_test_apk("chrome_sync_shell_test_apk") {
695 apk_name = "ChromeSyncShellTest" 710 apk_name = "ChromeSyncShellTest"
696 apk_under_test = ":chrome_sync_shell_apk" 711 apk_under_test = ":chrome_sync_shell_apk"
697 android_manifest = chrome_sync_shell_test_apk_manifest 712 android_manifest = chrome_sync_shell_test_apk_manifest
698 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" 713 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest"
699 deps = [ 714 deps = [
700 ":chrome_sync_shell_test_apk_java", 715 ":chrome_sync_shell_test_apk_java",
701 ] 716 ]
702 proguard_enabled = !is_java_debug 717 proguard_enabled = !is_java_debug
703 } 718 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698