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

Side by Side Diff: gyp/codec.gyp

Issue 1671193002: Make SkPicture/SkImageGenerator default to SkCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Move ImageGenerator impl into ktx code to share with nanobench Created 4 years, 10 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 | « dm/DMSrcSink.cpp ('k') | gyp/images.gyp » ('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 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Copyright 2015 Google Inc. 5 # Copyright 2015 Google Inc.
6 # 6 #
7 # Use of this source code is governed by a BSD-style license that can be 7 # Use of this source code is governed by a BSD-style license that can be
8 # found in the LICENSE file. 8 # found in the LICENSE file.
9 9
10 # GYP file for codec project. 10 # GYP file for codec project.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 '../src/codec/SkPngCodec.cpp', 51 '../src/codec/SkPngCodec.cpp',
52 '../src/codec/SkPngFilters.cpp', 52 '../src/codec/SkPngFilters.cpp',
53 '../src/codec/SkSampler.cpp', 53 '../src/codec/SkSampler.cpp',
54 '../src/codec/SkSampledCodec.cpp', 54 '../src/codec/SkSampledCodec.cpp',
55 '../src/codec/SkSwizzler.cpp', 55 '../src/codec/SkSwizzler.cpp',
56 '../src/codec/SkWbmpCodec.cpp', 56 '../src/codec/SkWbmpCodec.cpp',
57 '../src/codec/SkWebpAdapterCodec.cpp', 57 '../src/codec/SkWebpAdapterCodec.cpp',
58 '../src/codec/SkWebpCodec.cpp', 58 '../src/codec/SkWebpCodec.cpp',
59 59
60 '../src/codec/SkCodecImageGenerator.cpp', 60 '../src/codec/SkCodecImageGenerator.cpp',
61 '../src/ports/SkImageGenerator_skia.cpp',
61 ], 62 ],
62 'direct_dependent_settings': { 63 'direct_dependent_settings': {
63 'include_dirs': [ 64 'include_dirs': [
64 '../include/codec', 65 '../include/codec',
65 ], 66 ],
66 }, 67 },
67 'defines': [ 68 'defines': [
68 'TURBO_HAS_SKIP', 69 'TURBO_HAS_SKIP',
69 ], 70 ],
70 'conditions': [ 71 'conditions': [
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 ['skia_os == "ios" or skia_os == "mac"', { 121 ['skia_os == "ios" or skia_os == "mac"', {
121 'xcode_settings': { 122 'xcode_settings': {
122 'OTHER_CFLAGS': ['-fexceptions'], 123 'OTHER_CFLAGS': ['-fexceptions'],
123 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], 124 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'],
124 }, 125 },
125 }], 126 }],
126 ], 127 ],
127 }, 128 },
128 ], 129 ],
129 } 130 }
OLDNEW
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | gyp/images.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698