| OLD | NEW |
| 1 # Copyright 2014 PDFium Authors. All rights reserved. | 1 # Copyright 2014 PDFium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'pdf_enable_v8%': 1, | 7 'pdf_enable_v8%': 1, |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'defines' : [ | 10 'defines' : [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'fx_lpng', | 35 'fx_lpng', |
| 36 '../pdfium.gyp:pdfium', | 36 '../pdfium.gyp:pdfium', |
| 37 # Regardless of whether the library ships against system freetype, | 37 # Regardless of whether the library ships against system freetype, |
| 38 # always link this binary against the bundled one for consistency | 38 # always link this binary against the bundled one for consistency |
| 39 # of results across platforms. | 39 # of results across platforms. |
| 40 '../third_party/third_party.gyp:fx_freetype', | 40 '../third_party/third_party.gyp:fx_freetype', |
| 41 ], | 41 ], |
| 42 'sources': [ | 42 'sources': [ |
| 43 'pdfium_test.cc', | 43 'pdfium_test.cc', |
| 44 'image_diff_png.cc', | 44 'image_diff_png.cc', |
| 45 '../testing/test_support.cpp', |
| 46 '../testing/test_support.h', |
| 45 ], | 47 ], |
| 46 'link_settings': { | 48 'link_settings': { |
| 47 'libraries!': [ | 49 'libraries!': [ |
| 48 '-lfreetype', | 50 '-lfreetype', |
| 49 ], | 51 ], |
| 50 }, | 52 }, |
| 51 'conditions': [ | 53 'conditions': [ |
| 52 ['pdf_enable_v8==1', { | 54 ['pdf_enable_v8==1', { |
| 53 'dependencies': [ | 55 'dependencies': [ |
| 54 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_libplatform', | 56 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_libplatform', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'fx_lpng/src/fx_pngset.c', | 99 'fx_lpng/src/fx_pngset.c', |
| 98 'fx_lpng/src/fx_pngtrans.c', | 100 'fx_lpng/src/fx_pngtrans.c', |
| 99 'fx_lpng/src/fx_pngwio.c', | 101 'fx_lpng/src/fx_pngwio.c', |
| 100 'fx_lpng/src/fx_pngwrite.c', | 102 'fx_lpng/src/fx_pngwrite.c', |
| 101 'fx_lpng/src/fx_pngwtran.c', | 103 'fx_lpng/src/fx_pngwtran.c', |
| 102 'fx_lpng/src/fx_pngwutil.c', | 104 'fx_lpng/src/fx_pngwutil.c', |
| 103 ], | 105 ], |
| 104 }, | 106 }, |
| 105 ], | 107 ], |
| 106 } | 108 } |
| OLD | NEW |