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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 'skia_static_initializers%': '<(skia_static_initializers)', | 243 'skia_static_initializers%': '<(skia_static_initializers)', |
244 'ios_sdk_version%': '6.0', | 244 'ios_sdk_version%': '6.0', |
245 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', | 245 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', |
246 'skia_disable_inlining%': 0, | 246 'skia_disable_inlining%': 0, |
247 'skia_moz2d%': 0, | 247 'skia_moz2d%': 0, |
248 'skia_is_bot%': '<(skia_is_bot)', | 248 'skia_is_bot%': '<(skia_is_bot)', |
249 'skia_egl%': '<(skia_egl)', | 249 'skia_egl%': '<(skia_egl)', |
250 'skia_use_sdl%': 0, | 250 'skia_use_sdl%': 0, |
251 'skia_fast%': 0, | 251 'skia_fast%': 0, |
252 'skia_dump_stats%': 0, | 252 'skia_dump_stats%': 0, |
253 'skia_build_server%': 0, | |
254 'vulkan_merged_into_skia%': '<(vulkan_merged_into_skia)', | 253 'vulkan_merged_into_skia%': '<(vulkan_merged_into_skia)', |
255 'skia_fast_flags': [ | 254 'skia_fast_flags': [ |
256 '-O3', # Even for Debug builds. | 255 '-O3', # Even for Debug builds. |
257 '-march=native', # Use all features of and optimize for THIS mac
hine. | 256 '-march=native', # Use all features of and optimize for THIS mac
hine. |
258 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts
a push/pop. | 257 '-fomit-frame-pointer', # Sometimes an extra register is nice, and cuts
a push/pop. |
259 #'-ffast-math', # Optimize float math even when it breaks IEEE
compliance. | 258 #'-ffast-math', # Optimize float math even when it breaks IEEE
compliance. |
260 #'-flto' # Enable link-time optimization. | 259 #'-flto' # Enable link-time optimization. |
261 ], | 260 ], |
262 | 261 |
263 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 262 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
264 # | 263 # |
265 'skia_src_path%': '../src', | 264 'skia_src_path%': '../src', |
266 'skia_include_path%': '../include', | 265 'skia_include_path%': '../include', |
267 }, | 266 }, |
268 } | 267 } |
OLD | NEW |