| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 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 # conditions used in both common.gypi and skia.gyp in chromium | 6 # conditions used in both common.gypi and skia.gyp in chromium |
| 7 # | 7 # |
| 8 { | 8 { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', | 10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 ], | 621 ], |
| 622 }, | 622 }, |
| 623 ], | 623 ], |
| 624 | 624 |
| 625 [ 'skia_moz2d', { | 625 [ 'skia_moz2d', { |
| 626 'defines': [ | 626 'defines': [ |
| 627 # add flags here (e.g. SK_SUPPORT_LEGACY_...) needed by moz2d | 627 # add flags here (e.g. SK_SUPPORT_LEGACY_...) needed by moz2d |
| 628 ], | 628 ], |
| 629 }], | 629 }], |
| 630 | 630 |
| 631 [ 'sknx_no_simd', { |
| 632 'defines': [ 'SKNX_NO_SIMD' ], |
| 633 }], |
| 634 |
| 631 ], # end 'conditions' | 635 ], # end 'conditions' |
| 632 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for
more details | 636 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for
more details |
| 633 'xcode_settings': { | 637 'xcode_settings': { |
| 634 'SYMROOT': '<(DEPTH)/xcodebuild', | 638 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 635 }, | 639 }, |
| 636 } | 640 } |
| OLD | NEW |