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

Side by Side Diff: gyp/common_variables.gypi

Issue 1036533003: Add a go-fast button to Skia GYP configs. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 9 months 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
« no previous file with comments | « gyp/common_conditions.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 'skia_opencl%': '<(skia_opencl)', 232 'skia_opencl%': '<(skia_opencl)',
233 'skia_force_distance_field_text%': '<(skia_force_distance_field_text)', 233 'skia_force_distance_field_text%': '<(skia_force_distance_field_text)',
234 'skia_static_initializers%': '<(skia_static_initializers)', 234 'skia_static_initializers%': '<(skia_static_initializers)',
235 'ios_sdk_version%': '6.0', 235 'ios_sdk_version%': '6.0',
236 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', 236 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)',
237 'skia_run_pdfviewer_in_gm%': 0, 237 'skia_run_pdfviewer_in_gm%': 0,
238 'skia_disable_inlining%': 0, 238 'skia_disable_inlining%': 0,
239 'skia_moz2d%': 0, 239 'skia_moz2d%': 0,
240 '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)")',
241 'skia_egl%': '<(skia_egl)', 241 'skia_egl%': '<(skia_egl)',
242 'skia_fast%': 0,
243 'skia_fast_flags': [
244 '-O3', # Even for Debug builds.
245 '-march=native', # Use all features of and optimize for THIS mac hine.
246 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts a push/pop.
247 '-ffast-math', # Optimize float math even when it breaks IEEE compliance.
248 #'-flto' # Enable link-time optimization.
249 ],
242 250
243 # These are referenced by our .gypi files that list files (e.g. core.gypi) 251 # These are referenced by our .gypi files that list files (e.g. core.gypi)
244 # 252 #
245 'skia_src_path%': '../src', 253 'skia_src_path%': '../src',
246 'skia_include_path%': '../include', 254 'skia_include_path%': '../include',
247 }, 255 },
248 } 256 }
OLDNEW
« no previous file with comments | « gyp/common_conditions.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698