| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'skia_no_fontconfig%': '0', | 132 'skia_no_fontconfig%': '0', |
| 133 | 133 |
| 134 'skia_sanitizer%': '', | 134 'skia_sanitizer%': '', |
| 135 'skia_scalar%': 'float', | 135 'skia_scalar%': 'float', |
| 136 'skia_mesa%': 0, | 136 'skia_mesa%': 0, |
| 137 'skia_stroke_path_rendering%': 0, | 137 'skia_stroke_path_rendering%': 0, |
| 138 'skia_android_path_rendering%': 0, | 138 'skia_android_path_rendering%': 0, |
| 139 'skia_resource_cache_mb_limit%': 0, | 139 'skia_resource_cache_mb_limit%': 0, |
| 140 'skia_resource_cache_count_limit%': 0, | 140 'skia_resource_cache_count_limit%': 0, |
| 141 'skia_angle%': 0, | 141 'skia_angle%': 0, |
| 142 'skia_directwrite%': 0, | 142 'skia_gdi%': 0, |
| 143 'skia_gpu%': 1, | 143 'skia_gpu%': 1, |
| 144 'skia_osx_deployment_target%': '', | 144 'skia_osx_deployment_target%': '', |
| 145 'skia_profile_enabled%': 0, | 145 'skia_profile_enabled%': 0, |
| 146 'skia_win_debuggers_path%': '', | 146 'skia_win_debuggers_path%': '', |
| 147 'skia_shared_lib%': 0, | 147 'skia_shared_lib%': 0, |
| 148 'skia_opencl%': 0, | 148 'skia_opencl%': 0, |
| 149 'skia_force_distancefield_fonts%': 0, | 149 'skia_force_distancefield_fonts%': 0, |
| 150 | 150 |
| 151 # These variables determine the default optimization level for different | 151 # These variables determine the default optimization level for different |
| 152 # compilers. | 152 # compilers. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 'skia_moz2d%': 0, | 228 'skia_moz2d%': 0, |
| 229 'skia_crash_handler%': | 229 'skia_crash_handler%': |
| 230 '<!(python -c "import os; print os.environ.get(\'CHROME_HEADLESS\', 0)")
', | 230 '<!(python -c "import os; print os.environ.get(\'CHROME_HEADLESS\', 0)")
', |
| 231 | 231 |
| 232 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 232 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
| 233 # | 233 # |
| 234 'skia_src_path%': '../src', | 234 'skia_src_path%': '../src', |
| 235 'skia_include_path%': '../include', | 235 'skia_include_path%': '../include', |
| 236 }, | 236 }, |
| 237 } | 237 } |
| OLD | NEW |