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

Side by Side Diff: gyp/common_variables.gypi

Issue 1662643003: Disable RAW decodes on Windows (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 'skia_android_framework%': 0, 54 'skia_android_framework%': 0,
55 'conditions' : [ 55 'conditions' : [
56 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', { 56 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "mac"]', {
57 'skia_arch_type%': 'x86_64', 57 'skia_arch_type%': 'x86_64',
58 }, { 58 }, {
59 'skia_arch_type%': 'x86', 59 'skia_arch_type%': 'x86',
60 }], 60 }],
61 # RAW codec needs exceptions. Due to that, it is a separate target. It s usage can be 61 # RAW codec needs exceptions. Due to that, it is a separate target. It s usage can be
62 # controlled by skia_codec_decodes_raw. 62 # controlled by skia_codec_decodes_raw.
63 ['skia_os == "chromeos"', { 63 ['skia_os == "chromeos" or skia_os == "win"', {
64 # FIXME: fix the support for ChromeOS [DNG SDK issue with clock_gett ime()]. 64 # FIXME: fix the support for ChromeOS [DNG SDK issue with clock_gett ime()].
65 'skia_codec_decodes_raw%' : 0, 65 'skia_codec_decodes_raw%' : 0,
66 }, { 66 }, {
67 'skia_codec_decodes_raw%' : 1, 67 'skia_codec_decodes_raw%' : 1,
68 }], 68 }],
69 ], 69 ],
70 'arm_version%': 0, 70 'arm_version%': 0,
71 'arm_neon%': 0, 71 'arm_neon%': 0,
72 'skia_egl%': 0, 72 'skia_egl%': 0,
73 }, 73 },
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 '-ffast-math', # Optimize float math even when it breaks IEEE compliance. 258 '-ffast-math', # Optimize float math even when it breaks IEEE compliance.
259 #'-flto' # Enable link-time optimization. 259 #'-flto' # Enable link-time optimization.
260 ], 260 ],
261 261
262 # 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)
263 # 263 #
264 'skia_src_path%': '../src', 264 'skia_src_path%': '../src',
265 'skia_include_path%': '../include', 265 'skia_include_path%': '../include',
266 }, 266 },
267 } 267 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698