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

Unified Diff: chrome/chrome_repack_locales.gypi

Issue 930923002: Add parameter to set source directories in repack locale. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: restore /. Created 5 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_repack_locales.gypi
diff --git a/chrome/chrome_repack_locales.gypi b/chrome/chrome_repack_locales.gypi
index e42708cfd91b96f3eec3c7fd45aa4fe4aec08a76..b7096c2c48aeda7c001a360712a5448e0e0bae54 100644
--- a/chrome/chrome_repack_locales.gypi
+++ b/chrome/chrome_repack_locales.gypi
@@ -20,13 +20,16 @@
'chromeos_flag': ['--chromeos=0'],
}],
],
+ 'repack_extra_flags%': [],
+ 'repack_shared_dir%': '<(SHARED_INTERMEDIATE_DIR)',
+ 'repack_output_dir%': '<(SHARED_INTERMEDIATE_DIR)',
},
'inputs': [
'<(repack_locales_path)',
- '<!@pymod_do_main(repack_locales -i -p <(OS) <(branding_flag) -g <(grit_out_dir) -s <(SHARED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) --use-ash <(use_ash) <(chromeos_flag) --enable-autofill-dialog <(enable_autofill_dialog) --enable-extensions <(enable_extensions) <(pak_locales))'
+ '<!@pymod_do_main(repack_locales -i -p <(OS) <(branding_flag) -g <(grit_out_dir) -s <(repack_shared_dir) -x <(repack_output_dir) --use-ash <(use_ash) <(repack_extra_flags) <(chromeos_flag) --enable-autofill-dialog <(enable_autofill_dialog) --enable-extensions <(enable_extensions) <(pak_locales))'
],
'outputs': [
- '<!@pymod_do_main(repack_locales -o -p <(OS) -g <(grit_out_dir) -s <(SHARED_INTERMEDIATE_DIR) -x <(SHARED_INTERMEDIATE_DIR) <(pak_locales))'
+ '<!@pymod_do_main(repack_locales -o -p <(OS) -g <(grit_out_dir) -s <(repack_shared_dir) -x <(repack_output_dir) <(pak_locales))'
],
'action': [
'python',
@@ -34,9 +37,10 @@
'<@(branding_flag)',
'-p', '<(OS)',
'-g', '<(grit_out_dir)',
- '-s', '<(SHARED_INTERMEDIATE_DIR)',
- '-x', '<(SHARED_INTERMEDIATE_DIR)/.',
+ '-s<(repack_shared_dir)',
+ '-x<(repack_output_dir)/.',
'--use-ash=<(use_ash)',
+ '<@(repack_extra_flags)',
'<@(chromeos_flag)',
'--enable-autofill-dialog=<(enable_autofill_dialog)',
'--enable-extensions=<(enable_extensions)',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698