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("//android_webview/webview_repack_locales_list.gni") | 5 import("//android_webview/webview_repack_locales_list.gni") |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
8 import("//build/util/process_version.gni") | 8 import("//build/util/process_version.gni") |
9 import("//chrome/android/chrome_public_apk_tmpl.gni") | 9 import("//chrome/android/chrome_public_apk_tmpl.gni") |
10 import("//chrome/android/monochrome_android_manifest_jinja_variables.gni") | 10 import("//chrome/android/monochrome_android_manifest_jinja_variables.gni") |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 } | 581 } |
582 | 582 |
583 deps = [ | 583 deps = [ |
584 "//chrome:packed_resources", | 584 "//chrome:packed_resources", |
585 ] | 585 ] |
586 } | 586 } |
587 | 587 |
588 jinja_template_resources("chrome_public_apk_template_resources") { | 588 jinja_template_resources("chrome_public_apk_template_resources") { |
589 resources = [ | 589 resources = [ |
590 "java/res_template/xml/chromebackupscheme.xml", | 590 "java/res_template/xml/chromebackupscheme.xml", |
| 591 "java/res_template/xml/launchershortcuts.xml", |
591 "java/res_template/xml/searchable.xml", | 592 "java/res_template/xml/searchable.xml", |
592 "java/res_template/xml/syncadapter.xml", | 593 "java/res_template/xml/syncadapter.xml", |
593 ] | 594 ] |
594 res_dir = "java/res_template" | 595 res_dir = "java/res_template" |
595 variables = chrome_public_jinja_variables | 596 variables = chrome_public_jinja_variables |
596 } | 597 } |
597 | 598 |
598 jinja_template_resources("chrome_sync_shell_apk_template_resources") { | 599 jinja_template_resources("chrome_sync_shell_apk_template_resources") { |
599 resources = [ | 600 resources = [ |
600 "java/res_template/xml/chromebackupscheme.xml", | 601 "java/res_template/xml/chromebackupscheme.xml", |
| 602 "java/res_template/xml/launchershortcuts.xml", |
601 "java/res_template/xml/searchable.xml", | 603 "java/res_template/xml/searchable.xml", |
602 "java/res_template/xml/syncadapter.xml", | 604 "java/res_template/xml/syncadapter.xml", |
603 ] | 605 ] |
604 res_dir = "java/res_template" | 606 res_dir = "java/res_template" |
605 variables = chrome_sync_shell_jinja_variables | 607 variables = chrome_sync_shell_jinja_variables |
606 } | 608 } |
607 | 609 |
608 shared_library("chrome") { | 610 shared_library("chrome") { |
609 sources = [ | 611 sources = [ |
610 "../app/android/chrome_main_delegate_android_initializer.cc", | 612 "../app/android/chrome_main_delegate_android_initializer.cc", |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
902 apk_name = "ChromeSyncShellTest" | 904 apk_name = "ChromeSyncShellTest" |
903 apk_under_test = ":chrome_sync_shell_apk" | 905 apk_under_test = ":chrome_sync_shell_apk" |
904 android_manifest = chrome_sync_shell_test_apk_manifest | 906 android_manifest = chrome_sync_shell_test_apk_manifest |
905 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" | 907 android_manifest_dep = ":chrome_sync_shell_test_apk_manifest" |
906 deps = [ | 908 deps = [ |
907 ":chrome_sync_shell_test_apk_java", | 909 ":chrome_sync_shell_test_apk_java", |
908 "//third_party/android_support_test_runner:runner_java", | 910 "//third_party/android_support_test_runner:runner_java", |
909 ] | 911 ] |
910 proguard_enabled = !is_java_debug | 912 proguard_enabled = !is_java_debug |
911 } | 913 } |
OLD | NEW |