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

Side by Side Diff: gyp/pdfviewer.gyp

Issue 21125002: pdfviewer: more plumming for soft masks (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « experimental/PdfViewer/spec2def.py ('k') | 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 }, 48 },
49 { 49 {
50 'action_name': 'generate_code', 50 'action_name': 'generate_code',
51 'inputs': [ 51 'inputs': [
52 '<(SHARED_INTERMEDIATE_DIR)/datatypes.py', 52 '<(SHARED_INTERMEDIATE_DIR)/datatypes.py',
53 '<(SHARED_INTERMEDIATE_DIR)/generate_code.py', 53 '<(SHARED_INTERMEDIATE_DIR)/generate_code.py',
54 '<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py', 54 '<(SHARED_INTERMEDIATE_DIR)/pdfspec_autogen.py',
55 ], 55 ],
56 'outputs': [ 56 'outputs': [
57 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfEnums_autogen.h', 57 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfEnums_autogen.h',
58 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.h',
59 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.h',
58 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp', 60 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp',
59 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp' , 61 '<(SHARED_INTERMEDIATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp' ,
60 # TODO(edisonn): ok, there are many more files here, which we should list but since 62 # TODO(edisonn): ok, there are many more files here, which we should list but since
61 # any change in the above should trigger a change here, we should be fine normally 63 # any change in the above should trigger a change here, we should be fine normally
62 ], 64 ],
63 'action': ['python', '<(SHARED_INTERMEDIATE_DIR)/generate_code.py', '< (SHARED_INTERMEDIATE_DIR)'], 65 'action': ['python', '<(SHARED_INTERMEDIATE_DIR)/generate_code.py', '< (SHARED_INTERMEDIATE_DIR)'],
64 }, 66 },
65 ], 67 ],
66 'include_dirs': [ 68 'include_dirs': [
67 '../experimental/PdfViewer', 69 '../experimental/PdfViewer',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 ], 102 ],
101 }, 103 },
102 ], 104 ],
103 } 105 }
104 106
105 # Local Variables: 107 # Local Variables:
106 # tab-width:2 108 # tab-width:2
107 # indent-tabs-mode:nil 109 # indent-tabs-mode:nil
108 # End: 110 # End:
109 # vim: set expandtab tabstop=2 shiftwidth=2: 111 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « experimental/PdfViewer/spec2def.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698