| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 'chromium_code': 1, | 3 'chromium_code': 1, |
| 4 'pdf_engine%': 0, # 0 PDFium | 4 'pdf_engine%': 0, # 0 PDFium |
| 5 }, | 5 }, |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'pdf', | 8 'target_name': 'pdf', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
| 12 '../components/components.gyp:ui_zoom', | 12 '../components/components.gyp:ui_zoom', |
| 13 '../content/content.gyp:content_common', | 13 '../content/content.gyp:content_common', |
| 14 '../gin/gin.gyp:gin', |
| 14 '../net/net.gyp:net', | 15 '../net/net.gyp:net', |
| 15 '../ppapi/ppapi.gyp:ppapi_cpp_objects', | 16 '../ppapi/ppapi.gyp:ppapi_cpp_objects', |
| 16 '../ppapi/ppapi.gyp:ppapi_internal_module', | 17 '../ppapi/ppapi.gyp:ppapi_internal_module', |
| 17 '../third_party/pdfium/pdfium.gyp:pdfium', | 18 '../third_party/pdfium/pdfium.gyp:pdfium', |
| 18 ], | 19 ], |
| 19 'ldflags': [ '-L<(PRODUCT_DIR)',], | 20 'ldflags': [ '-L<(PRODUCT_DIR)',], |
| 20 'sources': [ | 21 'sources': [ |
| 21 'chunk_stream.h', | 22 'chunk_stream.h', |
| 22 'chunk_stream.cc', | 23 'chunk_stream.cc', |
| 23 'document_loader.h', | 24 'document_loader.h', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ], | 58 ], |
| 58 }], | 59 }], |
| 59 ['OS=="win"', { | 60 ['OS=="win"', { |
| 60 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 61 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 61 'msvs_disabled_warnings': [ 4267, ], | 62 'msvs_disabled_warnings': [ 4267, ], |
| 62 }], | 63 }], |
| 63 ], | 64 ], |
| 64 }, | 65 }, |
| 65 ], | 66 ], |
| 66 } | 67 } |
| OLD | NEW |