summaryrefslogtreecommitdiffstats
path: root/build/java_apk.gypi
diff options
context:
space:
mode:
authorcjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-01 01:45:03 +0000
committercjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-01 01:45:03 +0000
commit41f0de1b72419cc400dd5144a102a9fdd5ed6f66 (patch)
treeccff8afbdc13f287e4b6ace4f85403a59b8bc60c /build/java_apk.gypi
parentf894cc04c9edfae2f94d3d74584453e98778884b (diff)
downloadchromium_src-41f0de1b72419cc400dd5144a102a9fdd5ed6f66.zip
chromium_src-41f0de1b72419cc400dd5144a102a9fdd5ed6f66.tar.gz
chromium_src-41f0de1b72419cc400dd5144a102a9fdd5ed6f66.tar.bz2
Fix generation of v14 resources
generate_v14_compatible_resources.GenerateV14Resources was deleting and recreating the output directory. process_resources was calling that multiple times and reusing the same output directory (and so it would only actually get v14 resources for the final directory). Instead, callers of GenerateV14Resources should handle deleting/creating the output directory for themselves--this is just generate_v14_compatible_resources.main and process_resources (which was already handling this itself). BUG=383803 Review URL: https://codereview.chromium.org/362543004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@280725 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/java_apk.gypi')
-rw-r--r--build/java_apk.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/java_apk.gypi b/build/java_apk.gypi
index 1cb7ebc..4b0046b1 100644
--- a/build/java_apk.gypi
+++ b/build/java_apk.gypi
@@ -516,7 +516,7 @@
'--proguard-file', '<(generated_proguard_file)',
- '--resource-dir', '<(resource_dir)',
+ '--resource-dirs', '<(resource_dir)',
'--resource-zip-out', '<(resource_zip_path)',
'--R-dir', '<(intermediate_dir)/gen',