| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 'android_deps.gyp:gif', | 141 'android_deps.gyp:gif', |
| 142 'android_deps.gyp:png', | 142 'android_deps.gyp:png', |
| 143 ], | 143 ], |
| 144 'conditions': [ | 144 'conditions': [ |
| 145 [ 'skia_android_framework == 0', { | 145 [ 'skia_android_framework == 0', { |
| 146 'export_dependent_settings': [ | 146 'export_dependent_settings': [ |
| 147 'android_deps.gyp:png' | 147 'android_deps.gyp:png' |
| 148 ], | 148 ], |
| 149 }], | 149 }], |
| 150 ], | 150 ], |
| 151 },{ #else if skia_os != android | |
| 152 'sources!': [ | |
| 153 '../src/images/SkImageRef_ashmem.h', | |
| 154 '../src/images/SkImageRef_ashmem.cpp', | |
| 155 ], | |
| 156 }], | 151 }], |
| 157 [ 'skia_os == "chromeos"', { | 152 [ 'skia_os == "chromeos"', { |
| 158 'dependencies': [ | 153 'dependencies': [ |
| 159 'chromeos_deps.gyp:gif', | 154 'chromeos_deps.gyp:gif', |
| 160 'libpng.gyp:libpng', | 155 'libpng.gyp:libpng', |
| 161 ], | 156 ], |
| 162 }], | 157 }], |
| 163 [ 'skia_os == "ios"', { | 158 [ 'skia_os == "ios"', { |
| 164 'include_dirs': [ | 159 'include_dirs': [ |
| 165 '../include/utils/mac', | 160 '../include/utils/mac', |
| 166 ], | 161 ], |
| 167 }], | 162 }], |
| 168 ], | 163 ], |
| 169 'direct_dependent_settings': { | 164 'direct_dependent_settings': { |
| 170 'include_dirs': [ | 165 'include_dirs': [ |
| 171 '../include/images', | 166 '../include/images', |
| 172 ], | 167 ], |
| 173 }, | 168 }, |
| 174 }, | 169 }, |
| 175 ], | 170 ], |
| 176 } | 171 } |
| OLD | NEW |