| 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 'type': 'executable', | 10 'type': 'executable', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 '<(DEPTH)/v8', | 28 '<(DEPTH)/v8', |
| 29 '<(DEPTH)/v8/include', | 29 '<(DEPTH)/v8/include', |
| 30 ], | 30 ], |
| 31 }], | 31 }], |
| 32 ], | 32 ], |
| 33 }, | 33 }, |
| 34 'targets': [ | 34 'targets': [ |
| 35 { | 35 { |
| 36 'target_name': 'pdfium_test', | 36 'target_name': 'pdfium_test', |
| 37 'type': 'executable', | 37 'type': 'executable', |
| 38 'dependencies': [ |
| 39 '../pdfium.gyp:pdfium', |
| 40 '../pdfium.gyp:test_support', |
| 41 ], |
| 38 'sources': [ | 42 'sources': [ |
| 39 'pdfium_test.cc', | 43 'pdfium_test.cc', |
| 40 'image_diff_png.cc', | 44 'image_diff_png.cc', |
| 41 ], | 45 ], |
| 42 'conditions': [ | 46 'conditions': [ |
| 43 ['pdf_enable_v8==1', { | 47 ['pdf_enable_v8==1', { |
| 44 'dependencies': [ | 48 'dependencies': [ |
| 45 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_libplatform', | 49 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_libplatform', |
| 46 ], | 50 ], |
| 47 }], | 51 }], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 59 '../../', | 63 '../../', |
| 60 ], | 64 ], |
| 61 'sources': [ | 65 'sources': [ |
| 62 'image_diff.cc', | 66 'image_diff.cc', |
| 63 'image_diff_png.h', | 67 'image_diff_png.h', |
| 64 'image_diff_png.cc', | 68 'image_diff_png.cc', |
| 65 ], | 69 ], |
| 66 }, | 70 }, |
| 67 ], | 71 ], |
| 68 } | 72 } |
| OLD | NEW |