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

Side by Side Diff: gyp/codec.gyp

Issue 1406223002: Create an SkAndroidCodec API separate from SkCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Win bot fix Created 5 years, 2 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') | include/codec/SkAndroidCodec.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 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 14 matching lines...) Expand all
25 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu- GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio 25 # http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu- GCC-x86_64-Release-Trybot/builds/113/steps/build%20most/logs/stdio
26 '-Wno-clobbered', 26 '-Wno-clobbered',
27 ], 27 ],
28 'include_dirs': [ 28 'include_dirs': [
29 '../include/codec', 29 '../include/codec',
30 '../include/private', 30 '../include/private',
31 '../src/codec', 31 '../src/codec',
32 '../src/core', 32 '../src/core',
33 ], 33 ],
34 'sources': [ 34 'sources': [
35 '../src/codec/SkAndroidCodec.cpp',
35 '../src/codec/SkBmpCodec.cpp', 36 '../src/codec/SkBmpCodec.cpp',
36 '../src/codec/SkBmpMaskCodec.cpp', 37 '../src/codec/SkBmpMaskCodec.cpp',
37 '../src/codec/SkBmpRLECodec.cpp', 38 '../src/codec/SkBmpRLECodec.cpp',
38 '../src/codec/SkBmpStandardCodec.cpp', 39 '../src/codec/SkBmpStandardCodec.cpp',
39 '../src/codec/SkCodec.cpp', 40 '../src/codec/SkCodec.cpp',
40 '../src/codec/SkCodec_libgif.cpp', 41 '../src/codec/SkCodec_libgif.cpp',
41 '../src/codec/SkCodec_libico.cpp', 42 '../src/codec/SkCodec_libico.cpp',
42 '../src/codec/SkCodec_libpng.cpp', 43 '../src/codec/SkCodec_libpng.cpp',
43 '../src/codec/SkCodec_wbmp.cpp', 44 '../src/codec/SkCodec_wbmp.cpp',
44 '../src/codec/SkJpegCodec.cpp', 45 '../src/codec/SkJpegCodec.cpp',
45 '../src/codec/SkJpegDecoderMgr.cpp', 46 '../src/codec/SkJpegDecoderMgr.cpp',
46 '../src/codec/SkJpegUtility_codec.cpp', 47 '../src/codec/SkJpegUtility_codec.cpp',
47 '../src/codec/SkMaskSwizzler.cpp', 48 '../src/codec/SkMaskSwizzler.cpp',
48 '../src/codec/SkMasks.cpp', 49 '../src/codec/SkMasks.cpp',
49 '../src/codec/SkSampler.cpp', 50 '../src/codec/SkSampler.cpp',
50 '../src/codec/SkScaledCodec.cpp', 51 '../src/codec/SkScaledCodec.cpp',
51 '../src/codec/SkSwizzler.cpp', 52 '../src/codec/SkSwizzler.cpp',
53 '../src/codec/SkWebpAdapterCodec.cpp',
52 '../src/codec/SkWebpCodec.cpp', 54 '../src/codec/SkWebpCodec.cpp',
53 ], 55 ],
54 'direct_dependent_settings': { 56 'direct_dependent_settings': {
55 'include_dirs': [ 57 'include_dirs': [
56 '../include/codec', 58 '../include/codec',
57 ], 59 ],
58 }, 60 },
59 'conditions': [ 61 'conditions': [
60 [ 'skia_android_framework == 1', 62 [ 'skia_android_framework == 1',
61 { 63 {
(...skipping 21 matching lines...) Expand all
83 ], 85 ],
84 'defines': [ 86 'defines': [
85 'TURBO_HAS_SKIP', 87 'TURBO_HAS_SKIP',
86 ], 88 ],
87 } 89 }
88 ] 90 ]
89 ] 91 ]
90 }, 92 },
91 ], 93 ],
92 } 94 }
OLDNEW
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | include/codec/SkAndroidCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698