Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(632)

Side by Side Diff: gyp/common_variables.gypi

Issue 801413002: fix last warnings on w64 and turn on w.a.e. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix/simplify memset bench name printing Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 'skia_opencl%': 0, 154 'skia_opencl%': 0,
155 'skia_force_distance_field_text%': 0, 155 'skia_force_distance_field_text%': 0,
156 156
157 # These variables determine the default optimization level for different 157 # These variables determine the default optimization level for different
158 # compilers. 158 # compilers.
159 'skia_default_vs_optimization_level': 3, # full (/Ox) 159 'skia_default_vs_optimization_level': 3, # full (/Ox)
160 'skia_default_gcc_optimization_level': 3, # -O3 160 'skia_default_gcc_optimization_level': 3, # -O3
161 }, 161 },
162 162
163 'conditions': [ 163 'conditions': [
164 [ 'skia_os == "win" and skia_arch_width == 32 or ' 164 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android", "win"] '
165 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] '
166 'and skia_android_framework == 0 or ' 165 'and skia_android_framework == 0 or '
167 'skia_os == "mac" and skia_arch_width == 32', { 166 'skia_os == "mac" and skia_arch_width == 32', {
168 'skia_warnings_as_errors%': 1, 167 'skia_warnings_as_errors%': 1,
169 }, { 168 }, {
170 'skia_warnings_as_errors%': 0, 169 'skia_warnings_as_errors%': 0,
171 }], 170 }],
172 171
173 # This variable allows the user to customize the optimization level used 172 # This variable allows the user to customize the optimization level used
174 # by the compiler. The user should be aware that this has different 173 # by the compiler. The user should be aware that this has different
175 # meanings for different compilers and should exercise caution when 174 # meanings for different compilers and should exercise caution when
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'skia_moz2d%': 0, 239 'skia_moz2d%': 0,
241 'skia_is_bot%': '<!(python -c "import os; print os.environ.get(\'CHROME_HEAD LESS\', 0)")', 240 'skia_is_bot%': '<!(python -c "import os; print os.environ.get(\'CHROME_HEAD LESS\', 0)")',
242 'skia_egl%': '<(skia_egl)', 241 'skia_egl%': '<(skia_egl)',
243 242
244 # These are referenced by our .gypi files that list files (e.g. core.gypi) 243 # These are referenced by our .gypi files that list files (e.g. core.gypi)
245 # 244 #
246 'skia_src_path%': '../src', 245 'skia_src_path%': '../src',
247 'skia_include_path%': '../include', 246 'skia_include_path%': '../include',
248 }, 247 },
249 } 248 }
OLDNEW
« no previous file with comments | « experimental/PdfViewer/pdfparser/native/SkPdfNativeTokenizer.cpp ('k') | src/device/xps/SkXPSDevice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698