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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
142 'skia_osx_deployment_target%': '', | 142 'skia_osx_deployment_target%': '', |
143 'skia_profile_enabled%': 0, | 143 'skia_profile_enabled%': 0, |
144 'skia_win_debuggers_path%': '', | 144 'skia_win_debuggers_path%': '', |
145 'skia_shared_lib%': 0, | 145 'skia_shared_lib%': 0, |
146 'skia_opencl%': 0, | 146 'skia_opencl%': 0, |
147 'skia_force_distancefield_fonts%': 0, | 147 'skia_force_distancefield_fonts%': 0, |
148 | 148 |
149 # These variables determine the default optimization level for different | 149 # These variables determine the default optimization level for different |
150 # compilers. | 150 # compilers. |
151 'skia_default_vs_optimization_level': 3, # full (/Ox) | 151 'skia_default_vs_optimization_level': 3, # full (/Ox) |
152 'skia_default_gcc_optimization_level': 3, # -O3 | 152 'skia_default_gcc_optimization_level': 0, # -O3 |
bsalomon
2014/05/15 13:13:33
is this an accident?
yunchao
2014/05/15 14:15:53
Yeah, just for debugging... Will remove it.
| |
153 }, | 153 }, |
154 | 154 |
155 'conditions': [ | 155 'conditions': [ |
156 [ 'skia_os == "win" and skia_arch_width == 32 or ' | 156 [ 'skia_os == "win" and skia_arch_width == 32 or ' |
157 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] ' | 157 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] ' |
158 'and skia_android_framework == 0 or ' | 158 'and skia_android_framework == 0 or ' |
159 'skia_os == "mac" and skia_arch_width == 32', { | 159 'skia_os == "mac" and skia_arch_width == 32', { |
160 'skia_warnings_as_errors%': 1, | 160 'skia_warnings_as_errors%': 1, |
161 }, { | 161 }, { |
162 'skia_warnings_as_errors%': 0, | 162 'skia_warnings_as_errors%': 0, |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', | 219 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', |
220 'skia_run_pdfviewer_in_gm%': 0, | 220 'skia_run_pdfviewer_in_gm%': 0, |
221 'skia_disable_inlining%': 0, | 221 'skia_disable_inlining%': 0, |
222 | 222 |
223 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 223 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
224 # | 224 # |
225 'skia_src_path%': '../src', | 225 'skia_src_path%': '../src', |
226 'skia_include_path%': '../include', | 226 'skia_include_path%': '../include', |
227 }, | 227 }, |
228 } | 228 } |
OLD | NEW |