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

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: Created 6 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 # 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 12 matching lines...) Expand all
23 '../include/images', 23 '../include/images',
24 '../src/lazy', 24 '../src/lazy',
25 # for access to SkErrorInternals.h 25 # for access to SkErrorInternals.h
26 '../src/core/', 26 '../src/core/',
27 # for access to SkImagePriv.h 27 # for access to SkImagePriv.h
28 '../src/image/', 28 '../src/image/',
29 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h 29 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h
30 '../src/images/', 30 '../src/images/',
31 ], 31 ],
32 'sources': [ 32 'sources': [
33 '../include/images/SkDecodingImageGenerator.h',
33 '../include/images/SkForceLinking.h', 34 '../include/images/SkForceLinking.h',
34 '../include/images/SkImageRef.h', 35 '../include/images/SkImageRef.h',
35 '../include/images/SkImageRef_GlobalPool.h', 36 '../include/images/SkImageRef_GlobalPool.h',
36 '../src/images/SkJpegUtility.h', 37 '../src/images/SkJpegUtility.h',
37 '../include/images/SkMovie.h', 38 '../include/images/SkMovie.h',
38 '../include/images/SkPageFlipper.h', 39 '../include/images/SkPageFlipper.h',
39 40
40 '../src/images/bmpdecoderhelper.cpp', 41 '../src/images/bmpdecoderhelper.cpp',
41 '../src/images/bmpdecoderhelper.h', 42 '../src/images/bmpdecoderhelper.h',
42 43
43 '../src/images/SkDecodingImageGenerator.cpp', 44 '../src/images/SkDecodingImageGenerator.cpp',
44 '../src/images/SkDecodingImageGenerator.h',
45 '../src/images/SkForceLinking.cpp', 45 '../src/images/SkForceLinking.cpp',
46 '../src/images/SkImageDecoder.cpp', 46 '../src/images/SkImageDecoder.cpp',
47 '../src/images/SkImageDecoder_FactoryDefault.cpp', 47 '../src/images/SkImageDecoder_FactoryDefault.cpp',
48 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', 48 '../src/images/SkImageDecoder_FactoryRegistrar.cpp',
49 49
50 # If decoders are added/removed to/from (all/individual) 50 # If decoders are added/removed to/from (all/individual)
51 # platform(s), be sure to update SkForceLinking.cpp 51 # platform(s), be sure to update SkForceLinking.cpp
52 # so the right decoders will be forced to link. 52 # so the right decoders will be forced to link.
53 53
54 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files 54 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 }], 172 }],
173 ], 173 ],
174 'direct_dependent_settings': { 174 'direct_dependent_settings': {
175 'include_dirs': [ 175 'include_dirs': [
176 '../include/images', 176 '../include/images',
177 ], 177 ],
178 }, 178 },
179 }, 179 },
180 ], 180 ],
181 } 181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698