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

Unified Diff: gyp/pdfviewer_lib.gyp

Issue 22900010: pdfviewer: check in pdfapi classes (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/spec2def.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/pdfviewer_lib.gyp
===================================================================
--- gyp/pdfviewer_lib.gyp (revision 10779)
+++ gyp/pdfviewer_lib.gyp (working copy)
@@ -4,21 +4,6 @@
# ./gyp_skia pdfviewer.gyp && make pdfviewer
#
{
- # TODO(edisonn): Hack! on mack, SHARED_INTERMEDIATE_DIR can't be reliable used in a sources context
- 'conditions' : [
- [ 'skia_os != "mac"', {
- 'variables': {
- 'GENERATE_DIR%' : '<(SHARED_INTERMEDIATE_DIR)',
- },
- },
- ],
- [ 'skia_os == "mac"', {
- 'variables': {
- 'GENERATE_DIR%' : '../src/tmp_autogen',
- },
- },
- ],
- ],
'targets': [
{
'target_name': 'pdfviewer_lib',
@@ -34,62 +19,14 @@
'../experimental/PdfViewer/pdfparser/native/SkPdfNativeObject.cpp',
'../experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp',
'../experimental/PdfViewer/pdfparser/native/SkPdfNativeDoc.cpp',
- '<(GENERATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp',
- '<(GENERATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp',
+ '../experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfMapper_autogen.cpp',
+ '../experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfHeaders_autogen.cpp',
],
- 'actions': [
- {
- 'action_name': 'spec2def',
- 'inputs': [
- '../experimental/PdfViewer/spec2def.py',
- '../experimental/PdfViewer/PdfReference-okular-1.txt',
- ],
- 'outputs': [
- '<(GENERATE_DIR)/pdfspec_autogen.py',
- ],
- 'action': ['python', '../experimental/PdfViewer/spec2def.py', '../experimental/PdfViewer/PdfReference-okular-1.txt', '<(GENERATE_DIR)/pdfspec_autogen.py'],
- },
- {
- '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)', '../experimental/PdfViewer/generate_code.py'],
- },
- {
- 'action_name': 'generate_code',
- 'inputs': [
- '<(GENERATE_DIR)/datatypes.py',
- '<(GENERATE_DIR)/generate_code.py',
- '<(GENERATE_DIR)/pdfspec_autogen.py',
- ],
- 'outputs': [
- '<(GENERATE_DIR)/native/autogen/SkPdfEnums_autogen.h',
- '<(GENERATE_DIR)/native/autogen/SkPdfMapper_autogen.h',
- '<(GENERATE_DIR)/native/autogen/SkPdfHeaders_autogen.h',
- '<(GENERATE_DIR)/native/autogen/SkPdfMapper_autogen.cpp',
- '<(GENERATE_DIR)/native/autogen/SkPdfHeaders_autogen.cpp',
- # TODO(edisonn): ok, there are many more files here, which we should list but since
- # any change in the above should trigger a change here, we should be fine normally
- ],
- 'action': ['python', '<(GENERATE_DIR)/generate_code.py', '<(GENERATE_DIR)'],
- },
- ],
'include_dirs': [
'../experimental/PdfViewer',
'../experimental/PdfViewer/pdfparser',
'../experimental/PdfViewer/pdfparser/native',
- '<(GENERATE_DIR)/native/autogen',
+ '../experimental/PdfViewer/pdfparser/native/pdfapi',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
« 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