OLD | NEW |
1 # Copyright 2012 The Android Open Source Project | 1 # Copyright 2012 The Android Open Source Project |
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 { | 6 { |
7 # Get ready for the ugly... | 7 # Get ready for the ugly... |
8 # | 8 # |
9 # - We have to nest our variables dictionaries multiple levels deep, so that | 9 # - We have to nest our variables dictionaries multiple levels deep, so that |
10 # this and other gyp files can rely on previously-set variable values in | 10 # this and other gyp files can rely on previously-set variable values in |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 'skia_clang_build%': 0, | 182 'skia_clang_build%': 0, |
183 'skia_keep_frame_pointer%': 0, | 183 'skia_keep_frame_pointer%': 0, |
184 }], | 184 }], |
185 ], | 185 ], |
186 | 186 |
187 # Re-define all variables defined within the level-2 'variables' dict, | 187 # Re-define all variables defined within the level-2 'variables' dict, |
188 # so that siblings of the level-1 'variables' dict can see them. | 188 # so that siblings of the level-1 'variables' dict can see them. |
189 'arm_version%': '<(arm_version)', | 189 'arm_version%': '<(arm_version)', |
190 'arm_neon%': '<(arm_neon)', | 190 'arm_neon%': '<(arm_neon)', |
191 'arm_neon_optional%': 0, | 191 'arm_neon_optional%': 0, |
| 192 'mips_arch_variant%': 'mips32', |
| 193 'mips_dsp%': 0, |
192 'skia_os%': '<(skia_os)', | 194 'skia_os%': '<(skia_os)', |
193 'os_posix%': '<(os_posix)', | 195 'os_posix%': '<(os_posix)', |
194 | 196 |
195 'skia_freetype_static%': '<(skia_freetype_static)', | 197 'skia_freetype_static%': '<(skia_freetype_static)', |
196 'skia_giflib_static%': '<(skia_giflib_static)', | 198 'skia_giflib_static%': '<(skia_giflib_static)', |
197 'skia_libpng_static%': '<(skia_libpng_static)', | 199 'skia_libpng_static%': '<(skia_libpng_static)', |
198 'skia_zlib_static%': '<(skia_zlib_static)', | 200 'skia_zlib_static%': '<(skia_zlib_static)', |
199 'skia_no_fontconfig%': '<(skia_no_fontconfig)', | 201 'skia_no_fontconfig%': '<(skia_no_fontconfig)', |
200 'skia_sanitizer%': '<(skia_sanitizer)', | 202 'skia_sanitizer%': '<(skia_sanitizer)', |
201 'skia_scalar%': '<(skia_scalar)', | 203 'skia_scalar%': '<(skia_scalar)', |
(...skipping 23 matching lines...) Expand all Loading... |
225 'skia_run_pdfviewer_in_gm%': 0, | 227 'skia_run_pdfviewer_in_gm%': 0, |
226 'skia_disable_inlining%': 0, | 228 'skia_disable_inlining%': 0, |
227 'skia_moz2d%': 0, | 229 'skia_moz2d%': 0, |
228 | 230 |
229 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 231 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
230 # | 232 # |
231 'skia_src_path%': '../src', | 233 'skia_src_path%': '../src', |
232 'skia_include_path%': '../include', | 234 'skia_include_path%': '../include', |
233 }, | 235 }, |
234 } | 236 } |
OLD | NEW |