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

Side by Side Diff: build/config/android/internal_rules.gni

Issue 708883003: Add support for shared library resources to java_apk build rules. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « build/android/gyp/process_resources.py ('k') | build/config/android/rules.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6
7 assert(is_android) 7 assert(is_android)
8 8
9 9
10 rebased_android_sdk = rebase_path(android_sdk, root_build_dir) 10 rebased_android_sdk = rebase_path(android_sdk, root_build_dir)
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 if (defined(invoker.custom_package)) { 711 if (defined(invoker.custom_package)) {
712 args += [ 712 args += [
713 "--custom-package", invoker.custom_package, 713 "--custom-package", invoker.custom_package,
714 ] 714 ]
715 } 715 }
716 716
717 if (defined(invoker.v14_verify_only) && invoker.v14_verify_only) { 717 if (defined(invoker.v14_verify_only) && invoker.v14_verify_only) {
718 args += ["--v14-verify-only"] 718 args += ["--v14-verify-only"]
719 } 719 }
720 720
721 if (defined(invoker.shared_resources) &&
722 invoker.shared_resources) {
723 args += ["--shared-resources"]
724 }
725
721 if (defined(invoker.all_resources_zip_path)) { 726 if (defined(invoker.all_resources_zip_path)) {
722 all_resources_zip = invoker.all_resources_zip_path 727 all_resources_zip = invoker.all_resources_zip_path
723 outputs += [ all_resources_zip ] 728 outputs += [ all_resources_zip ]
724 args += [ 729 args += [
725 "--all-resources-zip-out", rebase_path(all_resources_zip, root_build_dir ) 730 "--all-resources-zip-out", rebase_path(all_resources_zip, root_build_dir )
726 ] 731 ]
727 } 732 }
728 733
729 if (defined(invoker.args)) { 734 if (defined(invoker.args)) {
730 args += invoker.args 735 args += invoker.args
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 769
765 if (defined(invoker.clear_dir) && invoker.clear_dir) { 770 if (defined(invoker.clear_dir) && invoker.clear_dir) {
766 args += ["--clear"] 771 args += ["--clear"]
767 } 772 }
768 773
769 if (defined(invoker.args)) { 774 if (defined(invoker.args)) {
770 args += invoker.args 775 args += invoker.args
771 } 776 }
772 } 777 }
773 } 778 }
OLDNEW
« no previous file with comments | « build/android/gyp/process_resources.py ('k') | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698