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

Side by Side Diff: gyp/images.gyp

Issue 228613003: Move SkDecodingImageGenerator.h to include/ (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Only move SkDecodingImageGenerator.h Created 6 years, 7 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 | include/images/SkDecodingImageGenerator.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 # GYP file for images project. 1 # GYP file for images project.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'images', 5 'target_name': 'images',
6 'product_name': 'skia_images', 6 'product_name': 'skia_images',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'core.gyp:*', 10 'core.gyp:*',
(...skipping 13 matching lines...) Expand all
24 '../include/images', 24 '../include/images',
25 '../src/lazy', 25 '../src/lazy',
26 # for access to SkErrorInternals.h 26 # for access to SkErrorInternals.h
27 '../src/core/', 27 '../src/core/',
28 # for access to SkImagePriv.h 28 # for access to SkImagePriv.h
29 '../src/image/', 29 '../src/image/',
30 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h 30 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h
31 '../src/images/', 31 '../src/images/',
32 ], 32 ],
33 'sources': [ 33 'sources': [
34 '../include/images/SkDecodingImageGenerator.h',
34 '../include/images/SkForceLinking.h', 35 '../include/images/SkForceLinking.h',
35 '../include/images/SkImageRef.h', 36 '../include/images/SkImageRef.h',
36 '../include/images/SkImageRef_GlobalPool.h', 37 '../include/images/SkImageRef_GlobalPool.h',
37 '../src/images/SkJpegUtility.h', 38 '../src/images/SkJpegUtility.h',
38 '../include/images/SkMovie.h', 39 '../include/images/SkMovie.h',
39 '../include/images/SkPageFlipper.h', 40 '../include/images/SkPageFlipper.h',
40 41
41 '../src/images/bmpdecoderhelper.cpp', 42 '../src/images/bmpdecoderhelper.cpp',
42 '../src/images/bmpdecoderhelper.h', 43 '../src/images/bmpdecoderhelper.h',
43 44
44 '../src/images/SkDecodingImageGenerator.cpp', 45 '../src/images/SkDecodingImageGenerator.cpp',
45 '../src/images/SkDecodingImageGenerator.h',
46 '../src/images/SkForceLinking.cpp', 46 '../src/images/SkForceLinking.cpp',
47 '../src/images/SkImageDecoder.cpp', 47 '../src/images/SkImageDecoder.cpp',
48 '../src/images/SkImageDecoder_FactoryDefault.cpp', 48 '../src/images/SkImageDecoder_FactoryDefault.cpp',
49 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', 49 '../src/images/SkImageDecoder_FactoryRegistrar.cpp',
50 50
51 # If decoders are added/removed to/from (all/individual) 51 # If decoders are added/removed to/from (all/individual)
52 # platform(s), be sure to update SkForceLinking.cpp 52 # platform(s), be sure to update SkForceLinking.cpp
53 # so the right decoders will be forced to link. 53 # so the right decoders will be forced to link.
54 54
55 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files 55 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 }], 174 }],
175 ], 175 ],
176 'direct_dependent_settings': { 176 'direct_dependent_settings': {
177 'include_dirs': [ 177 'include_dirs': [
178 '../include/images', 178 '../include/images',
179 ], 179 ],
180 }, 180 },
181 }, 181 },
182 ], 182 ],
183 } 183 }
OLDNEW
« no previous file with comments | « no previous file | include/images/SkDecodingImageGenerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698