| 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 import("//build/config/arm.gni") | 5 import("//build/config/arm.gni") |
| 6 import("//build_overrides/build.gni") | 6 import("//build_overrides/build.gni") |
| 7 import("../pdfium.gni") | 7 import("../pdfium.gni") |
| 8 | 8 |
| 9 group("third_party") { | 9 group("third_party") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "agg23/agg_path_storage.cpp", | 127 "agg23/agg_path_storage.cpp", |
| 128 "agg23/agg_path_storage.h", | 128 "agg23/agg_path_storage.h", |
| 129 "agg23/agg_rasterizer_scanline_aa.cpp", | 129 "agg23/agg_rasterizer_scanline_aa.cpp", |
| 130 "agg23/agg_rasterizer_scanline_aa.h", | 130 "agg23/agg_rasterizer_scanline_aa.h", |
| 131 "agg23/agg_renderer_scanline.h", | 131 "agg23/agg_renderer_scanline.h", |
| 132 "agg23/agg_rendering_buffer.h", | 132 "agg23/agg_rendering_buffer.h", |
| 133 "agg23/agg_scanline_u.h", | 133 "agg23/agg_scanline_u.h", |
| 134 "agg23/agg_vcgen_dash.cpp", | 134 "agg23/agg_vcgen_dash.cpp", |
| 135 "agg23/agg_vcgen_stroke.cpp", | 135 "agg23/agg_vcgen_stroke.cpp", |
| 136 ] | 136 ] |
| 137 deps = [ | |
| 138 "//:fxcrt", | |
| 139 ] | |
| 140 } | 137 } |
| 141 } | 138 } |
| 142 | 139 |
| 143 config("fx_lcms2_warnings") { | 140 config("fx_lcms2_warnings") { |
| 144 visibility = [ ":*" ] | 141 visibility = [ ":*" ] |
| 145 if (is_clang) { | 142 if (is_clang) { |
| 146 cflags = [ | 143 cflags = [ |
| 147 # cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this | 144 # cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this |
| 148 # library doesn't appear to have this problem. | 145 # library doesn't appear to have this problem. |
| 149 "-Wno-missing-braces", | 146 "-Wno-missing-braces", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 "libjpeg/jerror.h", | 258 "libjpeg/jerror.h", |
| 262 "libjpeg/jinclude.h", | 259 "libjpeg/jinclude.h", |
| 263 "libjpeg/jmemsys.h", | 260 "libjpeg/jmemsys.h", |
| 264 "libjpeg/jmorecfg.h", | 261 "libjpeg/jmorecfg.h", |
| 265 "libjpeg/jpegint.h", | 262 "libjpeg/jpegint.h", |
| 266 "libjpeg/jpeglib.h", | 263 "libjpeg/jpeglib.h", |
| 267 "libjpeg/jversion.h", | 264 "libjpeg/jversion.h", |
| 268 "libjpeg/makefile", | 265 "libjpeg/makefile", |
| 269 "libjpeg/transupp.h", | 266 "libjpeg/transupp.h", |
| 270 ] | 267 ] |
| 271 deps = [ | |
| 272 "//:fxcrt", | |
| 273 ] | |
| 274 } | 268 } |
| 275 | 269 |
| 276 config("fx_libopenjpeg_warnings") { | 270 config("fx_libopenjpeg_warnings") { |
| 277 visibility = [ ":*" ] | 271 visibility = [ ":*" ] |
| 278 if (is_win) { | 272 if (is_win) { |
| 279 cflags = [ | 273 cflags = [ |
| 280 # Signed/unsigned comparisons. | 274 # Signed/unsigned comparisons. |
| 281 "/wd4018", | 275 "/wd4018", |
| 282 ] | 276 ] |
| 283 } | 277 } |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 sources = [ | 470 sources = [ |
| 477 "base/logging.h", | 471 "base/logging.h", |
| 478 "base/macros.h", | 472 "base/macros.h", |
| 479 "base/numerics/safe_conversions.h", | 473 "base/numerics/safe_conversions.h", |
| 480 "base/numerics/safe_conversions_impl.h", | 474 "base/numerics/safe_conversions_impl.h", |
| 481 "base/numerics/safe_math.h", | 475 "base/numerics/safe_math.h", |
| 482 "base/numerics/safe_math_impl.h", | 476 "base/numerics/safe_math_impl.h", |
| 483 "base/stl_util.h", | 477 "base/stl_util.h", |
| 484 ] | 478 ] |
| 485 } | 479 } |
| OLD | NEW |