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

Unified Diff: gyp/pdfviewer.gyp

Issue 23157003: pdfviewer: workaround gyp issue with multiple files, not being translated into an array in linux (w… (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 4 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 | « experimental/PdfViewer/copy_files.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/pdfviewer.gyp
===================================================================
--- gyp/pdfviewer.gyp (revision 10721)
+++ gyp/pdfviewer.gyp (working copy)
@@ -53,19 +53,21 @@
'action': ['python', '../experimental/PdfViewer/spec2def.py', '../experimental/PdfViewer/PdfReference-okular-1.txt', '<(GENERATE_DIR)/pdfspec_autogen.py'],
},
{
- 'action_name': 'copy_files',
- 'variables': {
- 'sources' : [
- '../experimental/PdfViewer/datatypes.py',
- '../experimental/PdfViewer/generate_code.py',
- ]
- },
- 'inputs' : ['<(sources)'],
+ 'action_name': 'copy_files1',
+ 'inputs' : ['../experimental/PdfViewer/datatypes.py'],
'outputs': [
'<(GENERATE_DIR)/datatypes.py',
+ ],
+ 'action': ['python', '../experimental/PdfViewer/copy_files.py', '<(GENERATE_DIR)', '../experimental/PdfViewer/datatypes.py'],
+ },
+ {
+ 'action_name': 'copy_files2',
+
+ 'inputs' : ['../experimental/PdfViewer/generate_code.py'],
+ 'outputs': [
'<(GENERATE_DIR)/generate_code.py',
],
- 'action': ['python', '../experimental/PdfViewer/copy_files.py', '<(GENERATE_DIR)', '<@(sources)'],
+ 'action': ['python', '../experimental/PdfViewer/copy_files.py', '<(GENERATE_DIR)', '../experimental/PdfViewer/generate_code.py'],
},
{
'action_name': 'generate_code',
« no previous file with comments | « experimental/PdfViewer/copy_files.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698