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

Side by Side Diff: skia/BUILD.gn

Issue 2777683002: Move JPEGImageDecoder to SkCodec
Patch Set: Use shared SegmentStream 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "//third_party/skia/src/core", 100 "//third_party/skia/src/core",
101 "//third_party/skia/src/effects/gradients", 101 "//third_party/skia/src/effects/gradients",
102 "//third_party/skia/src/image", 102 "//third_party/skia/src/image",
103 "//third_party/skia/src/opts", 103 "//third_party/skia/src/opts",
104 "//third_party/skia/src/pdf", 104 "//third_party/skia/src/pdf",
105 "//third_party/skia/src/ports", 105 "//third_party/skia/src/ports",
106 "//third_party/skia/src/sfnt", 106 "//third_party/skia/src/sfnt",
107 "//third_party/skia/src/utils", 107 "//third_party/skia/src/utils",
108 "//third_party/skia/src/lazy", 108 "//third_party/skia/src/lazy",
109 "//third_party/skia/third_party/gif", 109 "//third_party/skia/third_party/gif",
110 "//third_party/skia/third_partylibjpeg-turbo",
110 ] 111 ]
111 if (is_mac || is_ios) { 112 if (is_mac || is_ios) {
112 include_dirs += [ "//third_party/skia/include/utils/mac" ] 113 include_dirs += [ "//third_party/skia/include/utils/mac" ]
113 } 114 }
114 if (is_mac) { 115 if (is_mac) {
115 include_dirs += [ "//third_party/skia/include/utils/ios" ] 116 include_dirs += [ "//third_party/skia/include/utils/ios" ]
116 } 117 }
117 118
118 defines = [] 119 defines = []
119 120
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 717
717 deps = [ 718 deps = [
718 ":skia", 719 ":skia",
719 "//base", 720 "//base",
720 "//base/test:test_support", 721 "//base/test:test_support",
721 "//build/config/sanitizers:deps", 722 "//build/config/sanitizers:deps",
722 "//build/win:default_exe_manifest", 723 "//build/win:default_exe_manifest",
723 ] 724 ]
724 } 725 }
725 } 726 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698