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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 'skia_profile_enabled%': '<(skia_profile_enabled)', | 219 'skia_profile_enabled%': '<(skia_profile_enabled)', |
220 'skia_shared_lib%': '<(skia_shared_lib)', | 220 'skia_shared_lib%': '<(skia_shared_lib)', |
221 'skia_opencl%': '<(skia_opencl)', | 221 'skia_opencl%': '<(skia_opencl)', |
222 'skia_force_distancefield_fonts%': '<(skia_force_distancefield_fonts)', | 222 'skia_force_distancefield_fonts%': '<(skia_force_distancefield_fonts)', |
223 'skia_static_initializers%': '<(skia_static_initializers)', | 223 'skia_static_initializers%': '<(skia_static_initializers)', |
224 'ios_sdk_version%': '6.0', | 224 'ios_sdk_version%': '6.0', |
225 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', | 225 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', |
226 'skia_run_pdfviewer_in_gm%': 0, | 226 'skia_run_pdfviewer_in_gm%': 0, |
227 'skia_disable_inlining%': 0, | 227 'skia_disable_inlining%': 0, |
228 'skia_moz2d%': 0, | 228 'skia_moz2d%': 0, |
229 'skia_crash_handler%': '<!(echo $CHROME_HEADLESS)', | |
borenet
2014/07/10 19:58:29
Hmm... will this blow up on Windows?
mtklein
2014/07/10 20:57:39
So, didn't blow anything up, but essentially force
| |
229 | 230 |
230 # 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) |
231 # | 232 # |
232 'skia_src_path%': '../src', | 233 'skia_src_path%': '../src', |
233 'skia_include_path%': '../include', | 234 'skia_include_path%': '../include', |
234 }, | 235 }, |
235 } | 236 } |
OLD | NEW |