OLD | NEW |
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 }, | 129 }, |
130 }], | 130 }], |
131 [ 'skia_os == "android"', { | 131 [ 'skia_os == "android"', { |
132 'include_dirs': [ | 132 'include_dirs': [ |
133 '../src/utils', | 133 '../src/utils', |
134 ], | 134 ], |
135 'dependencies': [ | 135 'dependencies': [ |
136 'android_deps.gyp:gif', | 136 'android_deps.gyp:gif', |
137 'android_deps.gyp:png', | 137 'android_deps.gyp:png', |
138 ], | 138 ], |
| 139 'export_dependent_settings': [ |
| 140 'android_deps.gyp:png' |
| 141 ], |
139 },{ #else if skia_os != android | 142 },{ #else if skia_os != android |
140 'sources!': [ | 143 'sources!': [ |
141 '../src/images/SkImageRef_ashmem.h', | 144 '../src/images/SkImageRef_ashmem.h', |
142 '../src/images/SkImageRef_ashmem.cpp', | 145 '../src/images/SkImageRef_ashmem.cpp', |
143 ], | 146 ], |
144 }], | 147 }], |
145 [ 'skia_os == "chromeos"', { | 148 [ 'skia_os == "chromeos"', { |
146 'dependencies': [ | 149 'dependencies': [ |
147 'chromeos_deps.gyp:gif', | 150 'chromeos_deps.gyp:gif', |
148 ], | 151 ], |
(...skipping 17 matching lines...) Expand all Loading... |
166 }, | 169 }, |
167 }, | 170 }, |
168 ], | 171 ], |
169 } | 172 } |
170 | 173 |
171 # Local Variables: | 174 # Local Variables: |
172 # tab-width:2 | 175 # tab-width:2 |
173 # indent-tabs-mode:nil | 176 # indent-tabs-mode:nil |
174 # End: | 177 # End: |
175 # vim: set expandtab tabstop=2 shiftwidth=2: | 178 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |