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

Side by Side Diff: gyp/utils.gyp

Issue 670453002: Remove image decoder and encoder autoregistration (Closed) Base URL: https://skia.googlesource.com/skia.git@separate-image-decoder-01-skpicture
Patch Set: Created 6 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
OLDNEW
1 # Gyp for utils. 1 # Gyp for utils.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'utils', 5 'target_name': 'utils',
6 'product_name': 'skia_utils', 6 'product_name': 'skia_utils',
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:*',
11 'etc1.gyp:libetc1', 11 'etc1.gyp:libetc1',
12 ], 12 ],
13 'includes': [ 13 'includes': [
14 'utils.gypi', 14 'utils.gypi',
15 ], 15 ],
16 'include_dirs': [ 16 'include_dirs': [
17 '../include/effects', 17 '../include/effects',
18 '../include/images', 18 '../include/images',
19 '../include/pathops', 19 '../include/pathops',
20 '../include/pipe', 20 '../include/pipe',
21 '../include/utils', 21 '../include/utils',
22 '../include/utils/mac', 22 '../include/utils/mac',
23 '../include/utils/unix', 23 '../include/utils/unix',
24 '../include/utils/win', 24 '../include/utils/win',
25 '../include/xml', 25 '../include/xml',
26 '../src/core', 26 '../src/core',
27 '../src/opts', 27 '../src/opts',
28 '../src/utils', 28 '../src/utils',
29 '../src/images',
29 ], 30 ],
30 'sources': [ 31 'sources': [
31 'utils.gypi', # Makes the gypi appear in IDEs (but does not modify the b uild). 32 'utils.gypi', # Makes the gypi appear in IDEs (but does not modify the b uild).
32 ], 33 ],
33 'sources!': [ 34 'sources!': [
34 '../src/utils/SDL/SkOSWindow_SDL.cpp', 35 '../src/utils/SDL/SkOSWindow_SDL.cpp',
35 ], 36 ],
36 'conditions': [ 37 'conditions': [
37 [ 'skia_os == "mac"', { 38 [ 'skia_os == "mac"', {
38 'link_settings': { 39 'link_settings': {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 ], 121 ],
121 'direct_dependent_settings': { 122 'direct_dependent_settings': {
122 'include_dirs': [ 123 'include_dirs': [
123 '../include/utils', 124 '../include/utils',
124 '../src/utils', 125 '../src/utils',
125 ], 126 ],
126 }, 127 },
127 }, 128 },
128 ], 129 ],
129 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698