OLD | NEW |
1 # Copyright 2011 The LibYuv Project Authors. All rights reserved. | 1 # Copyright 2011 The LibYuv Project Authors. All rights reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ | 10 'includes': [ |
(...skipping 16 matching lines...) Expand all Loading... |
27 }, { | 27 }, { |
28 'use_sysroot%': 1, | 28 'use_sysroot%': 1, |
29 }], | 29 }], |
30 ], | 30 ], |
31 }, | 31 }, |
32 'use_sysroot%': '<(use_sysroot)', | 32 'use_sysroot%': '<(use_sysroot)', |
33 'use_system_libjpeg%': 0, | 33 'use_system_libjpeg%': 0, |
34 'libyuv_disable_jpeg%': 0, | 34 'libyuv_disable_jpeg%': 0, |
35 # 'chromium_code' treats libyuv as internal and increases warning level. | 35 # 'chromium_code' treats libyuv as internal and increases warning level. |
36 'chromium_code': 1, | 36 'chromium_code': 1, |
| 37 # clang compiler default variable usable by other apps that include libyuv. |
| 38 'clang%': 0, |
37 # Link-Time Optimizations. | 39 # Link-Time Optimizations. |
38 'use_lto%': 0, | 40 'use_lto%': 0, |
39 'build_neon': 0, | 41 'build_neon': 0, |
40 'conditions': [ | 42 'conditions': [ |
41 ['(target_arch == "armv7" or target_arch == "armv7s" or \ | 43 ['(target_arch == "armv7" or target_arch == "armv7s" or \ |
42 (target_arch == "arm" and arm_version >= 7) or target_arch == "arm64")\ | 44 (target_arch == "arm" and arm_version >= 7) or target_arch == "arm64")\ |
43 and (arm_neon == 1 or arm_neon_optional == 1)', | 45 and (arm_neon == 1 or arm_neon_optional == 1)', |
44 { | 46 { |
45 'build_neon': 1, | 47 'build_neon': 1, |
46 }], | 48 }], |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 ], | 153 ], |
152 }, | 154 }, |
153 ], # targets. | 155 ], # targets. |
154 } | 156 } |
155 | 157 |
156 # Local Variables: | 158 # Local Variables: |
157 # tab-width:2 | 159 # tab-width:2 |
158 # indent-tabs-mode:nil | 160 # indent-tabs-mode:nil |
159 # End: | 161 # End: |
160 # vim: set expandtab tabstop=2 shiftwidth=2: | 162 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |