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 '_CRT_SECURE_NO_WARNINGS', | 9 '_CRT_SECURE_NO_WARNINGS', |
10 ], | 10 ], |
| 11 'include_dirs': [ |
| 12 # This is implicit in GN. |
| 13 '<(DEPTH)', |
| 14 '..', |
| 15 ], |
11 'msvs_disabled_warnings': [ | 16 'msvs_disabled_warnings': [ |
12 4005, 4018, 4146, 4333, 4345, 4267 | 17 4005, 4018, 4146, 4333, 4345, 4267 |
13 ], | 18 ], |
14 }, | 19 }, |
15 'targets': [ | 20 'targets': [ |
16 { | 21 { |
17 'target_name': 'bigint', | 22 'target_name': 'bigint', |
18 'type': 'static_library', | 23 'type': 'static_library', |
19 'sources': [ | 24 'sources': [ |
20 'bigint/BigInteger.hh', | 25 'bigint/BigInteger.hh', |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 ], | 159 ], |
155 'variables': { | 160 'variables': { |
156 'clang_warning_flags': [ | 161 'clang_warning_flags': [ |
157 '-Wno-missing-braces', | 162 '-Wno-missing-braces', |
158 # FindPrev() in cmsplugin.c is unused. | 163 # FindPrev() in cmsplugin.c is unused. |
159 '-Wno-unused-function', | 164 '-Wno-unused-function', |
160 ], | 165 ], |
161 }, | 166 }, |
162 }, | 167 }, |
163 { | 168 { |
164 'target_name': 'fx_libjpeg', | 169 'target_name': 'libjpeg', |
165 'type': 'static_library', | 170 'type': 'static_library', |
166 'sources': [ | 171 'sources': [ |
167 'libjpeg/cderror.h', | 172 'libjpeg/cderror.h', |
168 'libjpeg/cdjpeg.h', | 173 'libjpeg/cdjpeg.h', |
169 'libjpeg/fpdfapi_jcapimin.c', | 174 'libjpeg/fpdfapi_jcapimin.c', |
170 'libjpeg/fpdfapi_jcapistd.c', | 175 'libjpeg/fpdfapi_jcapistd.c', |
171 'libjpeg/fpdfapi_jccoefct.c', | 176 'libjpeg/fpdfapi_jccoefct.c', |
172 'libjpeg/fpdfapi_jccolor.c', | 177 'libjpeg/fpdfapi_jccolor.c', |
173 'libjpeg/fpdfapi_jcdctmgr.c', | 178 'libjpeg/fpdfapi_jcdctmgr.c', |
174 'libjpeg/fpdfapi_jchuff.c', | 179 'libjpeg/fpdfapi_jchuff.c', |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 'base/numerics/safe_conversions.h', | 290 'base/numerics/safe_conversions.h', |
286 'base/numerics/safe_conversions_impl.h', | 291 'base/numerics/safe_conversions_impl.h', |
287 'base/numerics/safe_math.h', | 292 'base/numerics/safe_math.h', |
288 'base/numerics/safe_math_impl.h', | 293 'base/numerics/safe_math_impl.h', |
289 'base/stl_util.h', | 294 'base/stl_util.h', |
290 'base/template_util.h', | 295 'base/template_util.h', |
291 ], | 296 ], |
292 }, | 297 }, |
293 ], | 298 ], |
294 } | 299 } |
OLD | NEW |