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

Unified Diff: build/android/gyp/write_build_config.py

Issue 2371843002: Reland of Move language pak files to assets. (Closed)
Patch Set: Fix ContentShell context setPrivateDataPrefix that was breaking tests Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/gyp/locale_pak_resources.py ('k') | build/android/resource_sizes.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/write_build_config.py
diff --git a/build/android/gyp/write_build_config.py b/build/android/gyp/write_build_config.py
index c17bfcb45906717c585940668da6dae9f34eb147..50379f2947c54df13a2c23213c2d92b4176d783b 100755
--- a/build/android/gyp/write_build_config.py
+++ b/build/android/gyp/write_build_config.py
@@ -209,12 +209,19 @@ def _ExtractSharedLibsFromRuntimeDeps(runtime_deps_files):
ret.reverse()
return ret
+
def _CreateJavaLibrariesList(library_paths):
- """ Create a java literal array with the "base" library names:
+ """Returns a java literal array with the "base" library names:
e.g. libfoo.so -> foo
"""
return ('{%s}' % ','.join(['"%s"' % s[3:-3] for s in library_paths]))
+
+def _CreateJavaAssetList(assets):
+ """Returns a java literal array from a list of assets in the form src:dst."""
+ return '{%s}' % ','.join(sorted(['"%s"' % a.split(':')[1] for a in assets]))
+
+
def main(argv):
parser = optparse.OptionParser()
build_utils.AddDepfileOption(parser)
@@ -233,8 +240,6 @@ def main(argv):
parser.add_option('--package-name',
help='Java package name for these resources.')
parser.add_option('--android-manifest', help='Path to android manifest.')
- parser.add_option('--is-locale-resource', action='store_true',
- help='Whether it is locale resource.')
parser.add_option('--resource-dirs', action='append', default=[],
help='GYP-list of resource dirs')
@@ -290,8 +295,6 @@ def main(argv):
help='GYP-list of proguard flag files to use in final apk.')
parser.add_option('--proguard-info',
help='Path to the proguard .info output for this apk.')
- parser.add_option('--has-alternative-locale-resource', action='store_true',
- help='Whether there is alternative-locale-resource in direct deps')
parser.add_option('--fail',
help='GYP-list of error message lines to fail with.')
@@ -339,21 +342,6 @@ def main(argv):
deps = Deps(direct_deps_config_paths)
all_inputs = deps.AllConfigPaths()
- # Remove other locale resources if there is alternative_locale_resource in
- # direct deps.
- if options.has_alternative_locale_resource:
- alternative = [r['path'] for r in deps.Direct('android_resources')
- if r.get('is_locale_resource')]
- # We can only have one locale resources in direct deps.
- if len(alternative) != 1:
- raise Exception('The number of locale resource in direct deps is wrong %d'
- % len(alternative))
- unwanted = [r['path'] for r in deps.All('android_resources')
- if r.get('is_locale_resource') and r['path'] not in alternative]
- for p in unwanted:
- deps.RemoveNonDirectDep(p)
-
-
direct_library_deps = deps.Direct('java_library')
all_library_deps = deps.All('java_library')
@@ -485,8 +473,6 @@ def main(argv):
deps_info['package_name'] = options.package_name
if options.r_text:
deps_info['r_text'] = options.r_text
- if options.is_locale_resource:
- deps_info['is_locale_resource'] = True
deps_info['resources_dirs'] = []
if options.resource_dirs:
@@ -658,6 +644,10 @@ def main(argv):
}
config['assets'], config['uncompressed_assets'] = (
_MergeAssets(deps.All('android_assets')))
+ config['compressed_assets_java_list'] = (
+ _CreateJavaAssetList(config['assets']))
+ config['uncompressed_assets_java_list'] = (
+ _CreateJavaAssetList(config['uncompressed_assets']))
build_utils.WriteJson(config, options.build_config, only_if_changed=True)
« no previous file with comments | « build/android/gyp/locale_pak_resources.py ('k') | build/android/resource_sizes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698