| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'vulkan_merged_into_skia': '1', | 54 'vulkan_merged_into_skia': '1', |
| 55 'skia_android_framework%': 0, | 55 'skia_android_framework%': 0, |
| 56 'conditions' : [ | 56 'conditions' : [ |
| 57 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', { | 57 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', { |
| 58 'skia_arch_type%': 'x86_64', | 58 'skia_arch_type%': 'x86_64', |
| 59 }, { | 59 }, { |
| 60 'skia_arch_type%': 'x86', | 60 'skia_arch_type%': 'x86', |
| 61 }], | 61 }], |
| 62 # RAW codec needs exceptions. Due to that, it is a separate target. It
s usage can be | 62 # RAW codec needs exceptions. Due to that, it is a separate target. It
s usage can be |
| 63 # controlled by skia_codec_decodes_raw. | 63 # controlled by skia_codec_decodes_raw. |
| 64 ['skia_os == "chromeos" or skia_os == "win"', { | 64 ['skia_os == "win"', { |
| 65 # FIXME: fix the support for ChromeOS [DNG SDK issue with clock_gett
ime()]. | |
| 66 'skia_codec_decodes_raw%' : 0, | 65 'skia_codec_decodes_raw%' : 0, |
| 67 }, { | 66 }, { |
| 68 'skia_codec_decodes_raw%' : 1, | 67 'skia_codec_decodes_raw%' : 1, |
| 69 }], | 68 }], |
| 70 ], | 69 ], |
| 71 'arm_version%': 0, | 70 'arm_version%': 0, |
| 72 'arm_neon%': 0, | 71 'arm_neon%': 0, |
| 73 'skia_egl%': 0, | 72 'skia_egl%': 0, |
| 74 }, | 73 }, |
| 75 | 74 |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 #'-ffast-math', # Optimize float math even when it breaks IEEE
compliance. | 259 #'-ffast-math', # Optimize float math even when it breaks IEEE
compliance. |
| 261 #'-flto' # Enable link-time optimization. | 260 #'-flto' # Enable link-time optimization. |
| 262 ], | 261 ], |
| 263 | 262 |
| 264 # These are referenced by our .gypi files that list files (e.g. core.gypi) | 263 # These are referenced by our .gypi files that list files (e.g. core.gypi) |
| 265 # | 264 # |
| 266 'skia_src_path%': '../src', | 265 'skia_src_path%': '../src', |
| 267 'skia_include_path%': '../include', | 266 'skia_include_path%': '../include', |
| 268 }, | 267 }, |
| 269 } | 268 } |
| OLD | NEW |