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

Side by Side Diff: gyp/common_variables.gypi

Issue 1704473002: Setup for -Fast GCE bot. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tests Created 4 years, 10 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 | « no previous file | tools/buildbot_spec.json » ('j') | 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 'skia_is_bot%': '<(skia_is_bot)', 250 'skia_is_bot%': '<(skia_is_bot)',
251 'skia_egl%': '<(skia_egl)', 251 'skia_egl%': '<(skia_egl)',
252 'skia_use_sdl%': 0, 252 'skia_use_sdl%': 0,
253 'skia_fast%': 0, 253 'skia_fast%': 0,
254 'skia_dump_stats%': 0, 254 'skia_dump_stats%': 0,
255 'skia_build_server%': 0, 255 'skia_build_server%': 0,
256 'skia_fast_flags': [ 256 'skia_fast_flags': [
257 '-O3', # Even for Debug builds. 257 '-O3', # Even for Debug builds.
258 '-march=native', # Use all features of and optimize for THIS mac hine. 258 '-march=native', # Use all features of and optimize for THIS mac hine.
259 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts a push/pop. 259 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts a push/pop.
260 '-ffast-math', # Optimize float math even when it breaks IEEE compliance. 260 #'-ffast-math', # Optimize float math even when it breaks IEEE compliance.
261 #'-flto' # Enable link-time optimization. 261 #'-flto' # Enable link-time optimization.
262 ], 262 ],
263 263
264 # These are referenced by our .gypi files that list files (e.g. core.gypi) 264 # These are referenced by our .gypi files that list files (e.g. core.gypi)
265 # 265 #
266 'skia_src_path%': '../src', 266 'skia_src_path%': '../src',
267 'skia_include_path%': '../include', 267 'skia_include_path%': '../include',
268 }, 268 },
269 } 269 }
OLDNEW
« no previous file with comments | « no previous file | tools/buildbot_spec.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698