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 16 matching lines...) Expand all Loading... |
27 }], | 27 }], |
28 ], | 28 ], |
29 }, | 29 }, |
30 'targets': [ | 30 'targets': [ |
31 { | 31 { |
32 'target_name': 'pdfium_test', | 32 'target_name': 'pdfium_test', |
33 'type': 'executable', | 33 'type': 'executable', |
34 'dependencies': [ | 34 'dependencies': [ |
35 'fx_lpng', | 35 'fx_lpng', |
36 '../pdfium.gyp:pdfium', | 36 '../pdfium.gyp:pdfium', |
| 37 '../pdfium.gyp:test_support', |
37 # Regardless of whether the library ships against system freetype, | 38 # Regardless of whether the library ships against system freetype, |
38 # always link this binary against the bundled one for consistency | 39 # always link this binary against the bundled one for consistency |
39 # of results across platforms. | 40 # of results across platforms. |
40 '../third_party/third_party.gyp:fx_freetype', | 41 '../third_party/third_party.gyp:fx_freetype', |
41 ], | 42 ], |
42 'sources': [ | 43 'sources': [ |
43 'pdfium_test.cc', | 44 'pdfium_test.cc', |
44 'image_diff_png.cc', | 45 'image_diff_png.cc', |
45 ], | 46 ], |
46 'link_settings': { | 47 'link_settings': { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 'fx_lpng/src/fx_pngset.c', | 98 'fx_lpng/src/fx_pngset.c', |
98 'fx_lpng/src/fx_pngtrans.c', | 99 'fx_lpng/src/fx_pngtrans.c', |
99 'fx_lpng/src/fx_pngwio.c', | 100 'fx_lpng/src/fx_pngwio.c', |
100 'fx_lpng/src/fx_pngwrite.c', | 101 'fx_lpng/src/fx_pngwrite.c', |
101 'fx_lpng/src/fx_pngwtran.c', | 102 'fx_lpng/src/fx_pngwtran.c', |
102 'fx_lpng/src/fx_pngwutil.c', | 103 'fx_lpng/src/fx_pngwutil.c', |
103 ], | 104 ], |
104 }, | 105 }, |
105 ], | 106 ], |
106 } | 107 } |
OLD | NEW |