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

Side by Side Diff: gyp/common_variables.gypi

Issue 2118553002: adding new GM to demostrate new shadows (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Made requested changes Created 4 years, 4 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
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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 'skia_fast%': 0, 244 'skia_fast%': 0,
245 'skia_dump_stats%': 0, 245 'skia_dump_stats%': 0,
246 'vulkan_merged_into_skia%': '<(vulkan_merged_into_skia)', 246 'vulkan_merged_into_skia%': '<(vulkan_merged_into_skia)',
247 'skia_fast_flags': [ 247 'skia_fast_flags': [
248 '-O3', # Even for Debug builds. 248 '-O3', # Even for Debug builds.
249 '-march=native', # Use all features of and optimize for THIS mac hine. 249 '-march=native', # Use all features of and optimize for THIS mac hine.
250 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts a push/pop. 250 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts a push/pop.
251 #'-ffast-math', # Optimize float math even when it breaks IEEE compliance. 251 #'-ffast-math', # Optimize float math even when it breaks IEEE compliance.
252 #'-flto' # Enable link-time optimization. 252 #'-flto' # Enable link-time optimization.
253 ], 253 ],
254 'skia_experimental_shadowing': 0, # for experimental shadow-drawing 254 'skia_experimental_shadowing': 1, # for experimental shadow-drawing
255 255
256 # These are referenced by our .gypi files that list files (e.g. core.gypi) 256 # These are referenced by our .gypi files that list files (e.g. core.gypi)
257 # 257 #
258 'skia_src_path%': '../src', 258 'skia_src_path%': '../src',
259 'skia_include_path%': '../include', 259 'skia_include_path%': '../include',
260 }, 260 },
261 } 261 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698