| 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': [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 'out_of_process_instance.h', | 29 'out_of_process_instance.h', |
| 30 'paint_aggregator.cc', | 30 'paint_aggregator.cc', |
| 31 'paint_aggregator.h', | 31 'paint_aggregator.h', |
| 32 'paint_manager.cc', | 32 'paint_manager.cc', |
| 33 'paint_manager.h', | 33 'paint_manager.h', |
| 34 'pdf.cc', | 34 'pdf.cc', |
| 35 'pdf.h', | 35 'pdf.h', |
| 36 'pdf_engine.h', | 36 'pdf_engine.h', |
| 37 'preview_mode_client.cc', | 37 'preview_mode_client.cc', |
| 38 'preview_mode_client.h', | 38 'preview_mode_client.h', |
| 39 'resource.h', | |
| 40 'resource_consts.h', | |
| 41 ], | 39 ], |
| 42 'conditions': [ | 40 'conditions': [ |
| 43 ['pdf_engine==0', { | 41 ['pdf_engine==0', { |
| 44 'sources': [ | 42 'sources': [ |
| 45 'pdfium/pdfium_api_string_buffer_adapter.cc', | 43 'pdfium/pdfium_api_string_buffer_adapter.cc', |
| 46 'pdfium/pdfium_api_string_buffer_adapter.h', | 44 'pdfium/pdfium_api_string_buffer_adapter.h', |
| 47 'pdfium/pdfium_assert_matching_enums.cc', | 45 'pdfium/pdfium_assert_matching_enums.cc', |
| 48 'pdfium/pdfium_engine.cc', | 46 'pdfium/pdfium_engine.cc', |
| 49 'pdfium/pdfium_engine.h', | 47 'pdfium/pdfium_engine.h', |
| 50 'pdfium/pdfium_mem_buffer_file_read.cc', | 48 'pdfium/pdfium_mem_buffer_file_read.cc', |
| 51 'pdfium/pdfium_mem_buffer_file_read.h', | 49 'pdfium/pdfium_mem_buffer_file_read.h', |
| 52 'pdfium/pdfium_mem_buffer_file_write.cc', | 50 'pdfium/pdfium_mem_buffer_file_write.cc', |
| 53 'pdfium/pdfium_mem_buffer_file_write.h', | 51 'pdfium/pdfium_mem_buffer_file_write.h', |
| 54 'pdfium/pdfium_page.cc', | 52 'pdfium/pdfium_page.cc', |
| 55 'pdfium/pdfium_page.h', | 53 'pdfium/pdfium_page.h', |
| 56 'pdfium/pdfium_range.cc', | 54 'pdfium/pdfium_range.cc', |
| 57 'pdfium/pdfium_range.h', | 55 'pdfium/pdfium_range.h', |
| 58 ], | 56 ], |
| 59 }], | 57 }], |
| 60 ['OS=="win"', { | 58 ['OS=="win"', { |
| 61 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 59 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 62 'msvs_disabled_warnings': [ 4267, ], | 60 'msvs_disabled_warnings': [ 4267, ], |
| 63 }], | 61 }], |
| 64 ], | 62 ], |
| 65 }, | 63 }, |
| 66 ], | 64 ], |
| 67 } | 65 } |
| OLD | NEW |