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

Side by Side Diff: skia/skia_common.gypi

Issue 1135693008: Ignore arm_neon_optional if arm_neon==1 in skia. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix build Created 5 years, 7 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 | « skia/BUILD.gn ('k') | 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This gypi file handles the removal of platform-specific files from the 5 # This gypi file handles the removal of platform-specific files from the
6 # Skia build. 6 # Skia build.
7 { 7 {
8 'includes': [ 8 'includes': [
9 # blink_skia_config.gypi defines blink_skia_defines 9 # blink_skia_config.gypi defines blink_skia_defines
10 '../third_party/WebKit/public/blink_skia_config.gypi', 10 '../third_party/WebKit/public/blink_skia_config.gypi',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'SK_HIGH_QUALITY_IS_LANCZOS', 92 'SK_HIGH_QUALITY_IS_LANCZOS',
93 ], 93 ],
94 }], 94 }],
95 95
96 # Neon support. 96 # Neon support.
97 [ 'target_arch == "arm" and arm_version >= 7 and arm_neon == 1', { 97 [ 'target_arch == "arm" and arm_version >= 7 and arm_neon == 1', {
98 'defines': [ 98 'defines': [
99 'SK_ARM_HAS_NEON', 99 'SK_ARM_HAS_NEON',
100 ], 100 ],
101 }], 101 }],
102 [ 'target_arch == "arm" and arm_version >= 7 and arm_neon_optional == 1', { 102 [ 'target_arch == "arm" and arm_version >= 7 and arm_neon == 0 and arm_neon_ optional == 1', {
103 'defines': [ 103 'defines': [
104 'SK_ARM_HAS_OPTIONAL_NEON', 104 'SK_ARM_HAS_OPTIONAL_NEON',
105 ], 105 ],
106 }], 106 }],
107 ], 107 ],
108 108
109 'variables': { 109 'variables': {
110 'variables': { 110 'variables': {
111 'conditions': [ 111 'conditions': [
112 ['OS== "ios"', { 112 ['OS== "ios"', {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 # re-export if they include Skia headers in their public headers. 174 # re-export if they include Skia headers in their public headers.
175 'all_dependent_settings': { 175 'all_dependent_settings': {
176 'include_dirs': [ 176 'include_dirs': [
177 '..', 177 '..',
178 'config', 178 'config',
179 ], 179 ],
180 }, 180 },
181 181
182 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], 182 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
183 } 183 }
OLDNEW
« no previous file with comments | « skia/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698