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

Side by Side Diff: gyp/pdfviewer.gyp

Issue 19808012: pdfviewer: path for outputs are relative to some other folder, make them absolute. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build pdfviewer. 1 # GYP file to build pdfviewer.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia pdfviewer.gyp && make pdfviewer 4 # ./gyp_skia pdfviewer.gyp && make pdfviewer
5 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 15 matching lines...) Expand all
26 '../experimental/PdfViewer/pdfparser/native/autogen/SkPdfHeaders_autogen .cpp', 26 '../experimental/PdfViewer/pdfparser/native/autogen/SkPdfHeaders_autogen .cpp',
27 ], 27 ],
28 'actions': [ 28 'actions': [
29 { 29 {
30 'action_name': 'spec2def', 30 'action_name': 'spec2def',
31 'inputs': [ 31 'inputs': [
32 '../experimental/PdfViewer/spec2def.py', 32 '../experimental/PdfViewer/spec2def.py',
33 '../experimental/PdfViewer/PdfReference-okular-1.txt', 33 '../experimental/PdfViewer/PdfReference-okular-1.txt',
34 ], 34 ],
35 'outputs': [ 35 'outputs': [
36 '../experimental/PdfViewer/autogen/pdfspec_autogen.py', 36 '<(skia_src_path)/../experimental/PdfViewer/autogen/pdfspec_autogen. py',
37 ], 37 ],
38 'action': ['python', '../experimental/PdfViewer/spec2def.py', '../expe rimental/PdfViewer/PdfReference-okular-1.txt', '../experimental/PdfViewer/autoge n/pdfspec_autogen.py'], 38 'action': ['python', '<(skia_src_path)/../experimental/PdfViewer/spec2 def.py', '<(skia_src_path)/../experimental/PdfViewer/PdfReference-okular-1.txt', '<(skia_src_path)/../experimental/PdfViewer/autogen/pdfspec_autogen.py'],
39 }, 39 },
40 { 40 {
41 'action_name': 'generate_code', 41 'action_name': 'generate_code',
42 'inputs': [ 42 'inputs': [
43 '../experimental/PdfViewer/generate_code.py', 43 '../experimental/PdfViewer/generate_code.py',
44 '../experimental/PdfViewer/autogen/pdfspec_autogen.py', 44 '../experimental/PdfViewer/autogen/pdfspec_autogen.py',
45 ], 45 ],
46 'outputs': [ 46 'outputs': [
47 '../experimental/PdfViewer/pdfparser/autogen/SkPdfEnums_autogen.h', 47 '<(skia_src_path)/../experimental/PdfViewer/pdfparser/autogen/SkPdfE nums_autogen.h',
48 '../experimental/PdfViewer/pdfparser/native/autogen/SkPdfMapper_auto gen.cpp', 48 '<(skia_src_path)/../experimental/PdfViewer/pdfparser/native/autogen /SkPdfMapper_autogen.cpp',
49 '../experimental/PdfViewer/pdfparser/native/autogen/SkPdfHeaders_aut ogen.cpp', 49 '<(skia_src_path)/../experimental/PdfViewer/pdfparser/native/autogen /SkPdfHeaders_autogen.cpp',
50 # TODO(edisonn): ok, there are many more files here, which we should list but since 50 # TODO(edisonn): ok, there are many more files here, which we should list but since
51 # any change in the above should trigger a change here, we should be fine normally 51 # any change in the above should trigger a change here, we should be fine normally
52 ], 52 ],
53 'action': ['python', '../experimental/PdfViewer/generate_code.py', '.. /experimental/PdfViewer/pdfparser/'], 53 'action': ['python', '<(skia_src_path)/../experimental/PdfViewer/gener ate_code.py', '<(skia_src_path)/../experimental/PdfViewer/pdfparser/'],
54 }, 54 },
55 ], 55 ],
56 'include_dirs': [ 56 'include_dirs': [
57 '../experimental/PdfViewer', 57 '../experimental/PdfViewer',
58 '../experimental/PdfViewer/pdfparser', 58 '../experimental/PdfViewer/pdfparser',
59 '../experimental/PdfViewer/pdfparser/autogen', 59 '../experimental/PdfViewer/pdfparser/autogen',
60 '../experimental/PdfViewer/pdfparser/native', 60 '../experimental/PdfViewer/pdfparser/native',
61 '../experimental/PdfViewer/pdfparser/native/autogen', 61 '../experimental/PdfViewer/pdfparser/native/autogen',
62 ], 62 ],
63 'dependencies': [ 63 'dependencies': [
(...skipping 26 matching lines...) Expand all
90 ], 90 ],
91 }, 91 },
92 ], 92 ],
93 } 93 }
94 94
95 # Local Variables: 95 # Local Variables:
96 # tab-width:2 96 # tab-width:2
97 # indent-tabs-mode:nil 97 # indent-tabs-mode:nil
98 # End: 98 # End:
99 # vim: set expandtab tabstop=2 shiftwidth=2: 99 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« 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