| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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: |
| OLD | NEW |