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

Side by Side Diff: skia/BUILD.gn

Issue 2565323003: Move gif image decoder to SkCodec (Closed)
Patch Set: Fix build, mixImagesGif test, and verifyRepetitionCount test Created 3 years, 8 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//printing/features/features.gni") 8 import("//printing/features/features.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//third_party/skia/gn/shared_sources.gni") 10 import("//third_party/skia/gn/shared_sources.gni")
(...skipping 11 matching lines...) Expand all
22 declare_args() { 22 declare_args() {
23 skia_whitelist_serialized_typefaces = false 23 skia_whitelist_serialized_typefaces = false
24 } 24 }
25 25
26 # External-facing config for dependent code. 26 # External-facing config for dependent code.
27 config("skia_config") { 27 config("skia_config") {
28 include_dirs = [ 28 include_dirs = [
29 "config", 29 "config",
30 "ext", 30 "ext",
31 "//third_party/skia/include/c", 31 "//third_party/skia/include/c",
32 "//third_party/skia/include/codec",
32 "//third_party/skia/include/config", 33 "//third_party/skia/include/config",
33 "//third_party/skia/include/core", 34 "//third_party/skia/include/core",
34 "//third_party/skia/include/effects", 35 "//third_party/skia/include/effects",
35 "//third_party/skia/include/images", 36 "//third_party/skia/include/images",
36 "//third_party/skia/include/lazy", 37 "//third_party/skia/include/lazy",
37 "//third_party/skia/include/pathops", 38 "//third_party/skia/include/pathops",
38 "//third_party/skia/include/pdf", 39 "//third_party/skia/include/pdf",
39 "//third_party/skia/include/pipe", 40 "//third_party/skia/include/pipe",
40 "//third_party/skia/include/ports", 41 "//third_party/skia/include/ports",
41 "//third_party/skia/include/utils", 42 "//third_party/skia/include/utils",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 86 }
86 87
87 # Internal-facing config for Skia library code. 88 # Internal-facing config for Skia library code.
88 config("skia_library_config") { 89 config("skia_library_config") {
89 # These include directories are only included for Skia code and are not 90 # These include directories are only included for Skia code and are not
90 # exported to dependents. It's not clear if this is on purpose, but this 91 # exported to dependents. It's not clear if this is on purpose, but this
91 # matches the GYP build. 92 # matches the GYP build.
92 include_dirs = [ 93 include_dirs = [
93 "//third_party/skia/include/private", 94 "//third_party/skia/include/private",
94 "//third_party/skia/include/client/android", 95 "//third_party/skia/include/client/android",
96 "//third_party/skia/src/codec",
95 "//third_party/skia/src/core", 97 "//third_party/skia/src/core",
96 "//third_party/skia/src/effects/gradients", 98 "//third_party/skia/src/effects/gradients",
97 "//third_party/skia/src/image", 99 "//third_party/skia/src/image",
98 "//third_party/skia/src/opts", 100 "//third_party/skia/src/opts",
99 "//third_party/skia/src/pdf", 101 "//third_party/skia/src/pdf",
100 "//third_party/skia/src/ports", 102 "//third_party/skia/src/ports",
101 "//third_party/skia/src/sfnt", 103 "//third_party/skia/src/sfnt",
102 "//third_party/skia/src/utils", 104 "//third_party/skia/src/utils",
103 "//third_party/skia/src/lazy", 105 "//third_party/skia/src/lazy",
106 "//third_party/skia/third_party/gif",
104 ] 107 ]
105 if (is_mac || is_ios) { 108 if (is_mac || is_ios) {
106 include_dirs += [ "//third_party/skia/include/utils/mac" ] 109 include_dirs += [ "//third_party/skia/include/utils/mac" ]
107 } 110 }
108 if (is_mac) { 111 if (is_mac) {
109 include_dirs += [ "//third_party/skia/include/utils/ios" ] 112 include_dirs += [ "//third_party/skia/include/utils/ios" ]
110 } 113 }
111 114
112 defines = [] 115 defines = []
113 116
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "ext/convolver_mips_dspr2.h", 254 "ext/convolver_mips_dspr2.h",
252 ] 255 ]
253 } 256 }
254 257
255 # The imported Skia gni source paths are made absolute by gn. 258 # The imported Skia gni source paths are made absolute by gn.
256 sources += skia_core_sources 259 sources += skia_core_sources
257 sources += skia_effects_sources 260 sources += skia_effects_sources
258 sources += skia_utils_sources 261 sources += skia_utils_sources
259 sources += skia_xps_sources 262 sources += skia_xps_sources
260 sources += [ 263 sources += [
264 "//third_party/skia/src/codec/SkBmpCodec.cpp",
265 "//third_party/skia/src/codec/SkBmpMaskCodec.cpp",
266 "//third_party/skia/src/codec/SkBmpRLECodec.cpp",
267 "//third_party/skia/src/codec/SkBmpStandardCodec.cpp",
268 "//third_party/skia/src/codec/SkCodec.cpp",
269 "//third_party/skia/src/codec/SkGifCodec.cpp",
270 "//third_party/skia/src/codec/SkMaskSwizzler.cpp",
271 "//third_party/skia/src/codec/SkMasks.cpp",
272 "//third_party/skia/src/codec/SkSampler.cpp",
273 "//third_party/skia/src/codec/SkStreamBuffer.cpp",
274 "//third_party/skia/src/codec/SkSwizzler.cpp",
275 "//third_party/skia/src/codec/SkWbmpCodec.cpp",
261 "//third_party/skia/src/fonts/SkFontMgr_indirect.cpp", 276 "//third_party/skia/src/fonts/SkFontMgr_indirect.cpp",
262 "//third_party/skia/src/fonts/SkRemotableFontMgr.cpp", 277 "//third_party/skia/src/fonts/SkRemotableFontMgr.cpp",
263 "//third_party/skia/src/ports/SkGlobalInitialization_default.cpp", 278 "//third_party/skia/src/ports/SkGlobalInitialization_default.cpp",
264 "//third_party/skia/src/ports/SkImageGenerator_none.cpp", 279 "//third_party/skia/src/ports/SkImageGenerator_none.cpp",
265 "//third_party/skia/src/ports/SkOSFile_stdio.cpp", 280 "//third_party/skia/src/ports/SkOSFile_stdio.cpp",
266 "//third_party/skia/src/sfnt/SkOTTable_name.cpp", 281 "//third_party/skia/src/sfnt/SkOTTable_name.cpp",
267 "//third_party/skia/src/sfnt/SkOTUtils.cpp", 282 "//third_party/skia/src/sfnt/SkOTUtils.cpp",
283 "//third_party/skia/third_party/gif/SkGifImageReader.cpp",
268 ] 284 ]
269 285
270 # This and skia_opts are really the same conceptual target so share headers. 286 # This and skia_opts are really the same conceptual target so share headers.
271 allow_circular_includes_from = [ ":skia_opts" ] 287 allow_circular_includes_from = [ ":skia_opts" ]
272 288
273 if (current_cpu == "arm") { 289 if (current_cpu == "arm") {
274 sources += [ "//third_party/skia/src/core/SkUtilsArm.cpp" ] 290 sources += [ "//third_party/skia/src/core/SkUtilsArm.cpp" ]
275 } 291 }
276 292
277 # GPU 293 # GPU
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 713
698 deps = [ 714 deps = [
699 ":skia", 715 ":skia",
700 "//base", 716 "//base",
701 "//base/test:test_support", 717 "//base/test:test_support",
702 "//build/config/sanitizers:deps", 718 "//build/config/sanitizers:deps",
703 "//build/win:default_exe_manifest", 719 "//build/win:default_exe_manifest",
704 ] 720 ]
705 } 721 }
706 } 722 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698