OLD | NEW |
---|---|
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # GYP file for images project. | 6 # GYP file for images project. |
7 { | 7 { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'images', | 10 'target_name': 'images', |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
124 ], | 124 ], |
125 # end libpng stuff | 125 # end libpng stuff |
126 }], | 126 }], |
127 [ 'skia_os == "android"', { | 127 [ 'skia_os == "android"', { |
128 'include_dirs': [ | 128 'include_dirs': [ |
129 '../src/utils', | 129 '../src/utils', |
130 ], | 130 ], |
131 'dependencies': [ | 131 'dependencies': [ |
132 'android_deps.gyp:png', | 132 'android_deps.gyp:png', |
133 ], | 133 ], |
134 'cflags' : [ | |
msarett
2015/10/14 21:58:59
SkImageDecoder_libpng includes png.h, which has th
mtklein
2015/10/14 22:15:10
Add this note here in the file?
msarett
2015/10/14 22:28:53
Done.
| |
135 '-Wno-literal-suffix', | |
136 ], | |
134 'conditions': [ | 137 'conditions': [ |
135 [ 'skia_android_framework == 0', { | 138 [ 'skia_android_framework == 0', { |
136 'export_dependent_settings': [ | 139 'export_dependent_settings': [ |
137 'android_deps.gyp:png', | 140 'android_deps.gyp:png', |
138 'libjpeg.gyp:*' | 141 'libjpeg.gyp:*' |
139 ], | 142 ], |
140 }, { | 143 }, { |
141 # The android framework disables these decoders as they are of lit tle use to | 144 # The android framework disables these decoders as they are of lit tle use to |
142 # Java applications that can't take advantage of the compressed fo rmats. | 145 # Java applications that can't take advantage of the compressed fo rmats. |
143 'sources!': [ | 146 'sources!': [ |
(...skipping 16 matching lines...) Expand all Loading... | |
160 }], | 163 }], |
161 ], | 164 ], |
162 'direct_dependent_settings': { | 165 'direct_dependent_settings': { |
163 'include_dirs': [ | 166 'include_dirs': [ |
164 '../include/images', | 167 '../include/images', |
165 ], | 168 ], |
166 }, | 169 }, |
167 }, | 170 }, |
168 ], | 171 ], |
169 } | 172 } |
OLD | NEW |