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 'target_defaults': { | 6 'target_defaults': { |
7 'defines': [ | 7 'defines': [ |
8 'OPJ_STATIC', | 8 'OPJ_STATIC', |
9 'PNG_PREFIX', | 9 'PNG_PREFIX', |
10 'PNGPREFIX_H', | 10 'PNGPREFIX_H', |
11 'PNG_USE_READ_MACROS', | 11 'PNG_USE_READ_MACROS', |
12 '_CRT_SECURE_NO_WARNINGS', | 12 '_CRT_SECURE_NO_WARNINGS', |
13 ], | 13 ], |
| 14 'include_dirs': [ |
| 15 # This is implicit in GN. |
| 16 '<(DEPTH)', |
| 17 '..', |
| 18 ], |
14 'msvs_disabled_warnings': [ | 19 'msvs_disabled_warnings': [ |
15 4005, 4018, 4146, 4333, 4345, 4267 | 20 4005, 4018, 4146, 4333, 4345, 4267 |
16 ], | 21 ], |
17 }, | 22 }, |
18 'targets': [ | 23 'targets': [ |
19 { | 24 { |
20 'target_name': 'bigint', | 25 'target_name': 'bigint', |
21 'type': 'static_library', | 26 'type': 'static_library', |
22 'sources': [ | 27 'sources': [ |
23 'bigint/BigInteger.hh', | 28 'bigint/BigInteger.hh', |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 ], | 146 ], |
142 }], | 147 }], |
143 ], | 148 ], |
144 'variables': { | 149 'variables': { |
145 'clang_warning_flags': [ | 150 'clang_warning_flags': [ |
146 '-Wno-missing-braces', | 151 '-Wno-missing-braces', |
147 ], | 152 ], |
148 }, | 153 }, |
149 }, | 154 }, |
150 { | 155 { |
151 'target_name': 'fx_libjpeg', | 156 'target_name': 'libjpeg', |
152 'type': 'static_library', | 157 'type': 'static_library', |
153 'sources': [ | 158 'sources': [ |
154 'libjpeg/cderror.h', | 159 'libjpeg/cderror.h', |
155 'libjpeg/cdjpeg.h', | 160 'libjpeg/cdjpeg.h', |
156 'libjpeg/fpdfapi_jcapimin.c', | 161 'libjpeg/fpdfapi_jcapimin.c', |
157 'libjpeg/fpdfapi_jcapistd.c', | 162 'libjpeg/fpdfapi_jcapistd.c', |
158 'libjpeg/fpdfapi_jccoefct.c', | 163 'libjpeg/fpdfapi_jccoefct.c', |
159 'libjpeg/fpdfapi_jccolor.c', | 164 'libjpeg/fpdfapi_jccolor.c', |
160 'libjpeg/fpdfapi_jcdctmgr.c', | 165 'libjpeg/fpdfapi_jcdctmgr.c', |
161 'libjpeg/fpdfapi_jchuff.c', | 166 'libjpeg/fpdfapi_jchuff.c', |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 'base/numerics/safe_conversions.h', | 341 'base/numerics/safe_conversions.h', |
337 'base/numerics/safe_conversions_impl.h', | 342 'base/numerics/safe_conversions_impl.h', |
338 'base/numerics/safe_math.h', | 343 'base/numerics/safe_math.h', |
339 'base/numerics/safe_math_impl.h', | 344 'base/numerics/safe_math_impl.h', |
340 'base/stl_util.h', | 345 'base/stl_util.h', |
341 'base/template_util.h', | 346 'base/template_util.h', |
342 ], | 347 ], |
343 }, | 348 }, |
344 ], | 349 ], |
345 } | 350 } |
OLD | NEW |