Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/BUILD.gn

Issue 2289263005: Fix gn gn --check complaints about fxcrt. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ]
137 } 140 }
138 } 141 }
139 142
140 config("fx_lcms2_warnings") { 143 config("fx_lcms2_warnings") {
141 visibility = [ ":*" ] 144 visibility = [ ":*" ]
142 if (is_clang) { 145 if (is_clang) {
143 cflags = [ 146 cflags = [
144 # cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this 147 # cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this
145 # library doesn't appear to have this problem. 148 # library doesn't appear to have this problem.
146 "-Wno-missing-braces", 149 "-Wno-missing-braces",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 "libjpeg/jerror.h", 261 "libjpeg/jerror.h",
259 "libjpeg/jinclude.h", 262 "libjpeg/jinclude.h",
260 "libjpeg/jmemsys.h", 263 "libjpeg/jmemsys.h",
261 "libjpeg/jmorecfg.h", 264 "libjpeg/jmorecfg.h",
262 "libjpeg/jpegint.h", 265 "libjpeg/jpegint.h",
263 "libjpeg/jpeglib.h", 266 "libjpeg/jpeglib.h",
264 "libjpeg/jversion.h", 267 "libjpeg/jversion.h",
265 "libjpeg/makefile", 268 "libjpeg/makefile",
266 "libjpeg/transupp.h", 269 "libjpeg/transupp.h",
267 ] 270 ]
271 deps = [
272 "//:fxcrt",
273 ]
268 } 274 }
269 275
270 config("fx_libopenjpeg_warnings") { 276 config("fx_libopenjpeg_warnings") {
271 visibility = [ ":*" ] 277 visibility = [ ":*" ]
272 if (is_win) { 278 if (is_win) {
273 cflags = [ 279 cflags = [
274 # Signed/unsigned comparisons. 280 # Signed/unsigned comparisons.
275 "/wd4018", 281 "/wd4018",
276 ] 282 ]
277 } 283 }
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 sources = [ 476 sources = [
471 "base/logging.h", 477 "base/logging.h",
472 "base/macros.h", 478 "base/macros.h",
473 "base/numerics/safe_conversions.h", 479 "base/numerics/safe_conversions.h",
474 "base/numerics/safe_conversions_impl.h", 480 "base/numerics/safe_conversions_impl.h",
475 "base/numerics/safe_math.h", 481 "base/numerics/safe_math.h",
476 "base/numerics/safe_math_impl.h", 482 "base/numerics/safe_math_impl.h",
477 "base/stl_util.h", 483 "base/stl_util.h",
478 ] 484 ]
479 } 485 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698