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

Unified Diff: build/repack_action.gypi

Issue 216233012: Add whitelist support for grit repack steps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
Index: build/repack_action.gypi
diff --git a/build/repack_action.gypi b/build/repack_action.gypi
index e4bbf686158f356b604789035660ba19bfb4aeaa..ef19d8809f064022b61ac0f7ecee6a6358fe152c 100644
--- a/build/repack_action.gypi
+++ b/build/repack_action.gypi
@@ -11,6 +11,7 @@
{
'variables': {
'repack_path': '<(DEPTH)/tools/grit/grit/format/repack.py',
+ 'repack_options%': [],
},
'inputs': [
'<(repack_path)',
@@ -19,5 +20,10 @@
'outputs': [
'<(pak_output)'
],
- 'action': ['python', '<(repack_path)', '<(pak_output)', '<@(pak_inputs)'],
+ 'action': [
+ 'python',
+ '<(repack_path)',
+ '<@(repack_options)',
+ '<(pak_output)',
+ '<@(pak_inputs)'],
newt (away) 2014/03/31 17:45:14 nit: ] on separate line
aurimas (slooooooooow) 2014/03/31 17:54:21 Done.
}

Powered by Google App Engine
This is Rietveld 408576698