| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |