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': [ |
11 'libyuv.gypi', | 11 'libyuv.gypi', |
12 ], | 12 ], |
13 # Make sure that if we are being compiled to an xcodeproj, nothing tries to | 13 # Make sure that if we are being compiled to an xcodeproj, nothing tries to |
14 # include a .pch. | 14 # include a .pch. |
15 'xcode_settings': { | 15 'xcode_settings': { |
16 'GCC_PREFIX_HEADER': '', | 16 'GCC_PREFIX_HEADER': '', |
17 'GCC_PRECOMPILE_PREFIX_HEADER': 'NO', | 17 'GCC_PRECOMPILE_PREFIX_HEADER': 'NO', |
18 }, | 18 }, |
19 'variables': { | 19 'variables': { |
20 'variables': { | |
21 # Disable use of sysroot for Linux. It's enabled by default in Chromium, | |
22 # but it currently lacks the libudev-dev package. | |
23 # TODO(kjellander): Remove when crbug.com/561584 is fixed. | |
24 'use_sysroot': 0, | |
Sam Clegg
2016/01/06 18:37:34
I think this broke the Linux ARM builder, where sy
kjellander_chromium
2016/01/11 20:36:03
Frank was making this change with the assumption t
| |
25 }, | |
26 'use_sysroot%': '<(use_sysroot)', | |
20 'use_system_libjpeg%': 0, | 27 'use_system_libjpeg%': 0, |
21 'libyuv_disable_jpeg%': 0, | 28 'libyuv_disable_jpeg%': 0, |
22 # 'chromium_code' treats libyuv as internal and increases warning level. | 29 # 'chromium_code' treats libyuv as internal and increases warning level. |
23 'chromium_code': 1, | 30 'chromium_code': 1, |
24 # Link-Time Optimizations. | 31 # Link-Time Optimizations. |
25 'use_lto%': 0, | 32 'use_lto%': 0, |
26 'build_neon': 0, | 33 'build_neon': 0, |
27 'conditions': [ | 34 'conditions': [ |
28 ['(target_arch == "armv7" or target_arch == "armv7s" or \ | 35 ['(target_arch == "armv7" or target_arch == "armv7s" or \ |
29 (target_arch == "arm" and arm_version >= 7) or target_arch == "arm64")\ | 36 (target_arch == "arm" and arm_version >= 7) or target_arch == "arm64")\ |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
138 ], | 145 ], |
139 }, | 146 }, |
140 ], # targets. | 147 ], # targets. |
141 } | 148 } |
142 | 149 |
143 # Local Variables: | 150 # Local Variables: |
144 # tab-width:2 | 151 # tab-width:2 |
145 # indent-tabs-mode:nil | 152 # indent-tabs-mode:nil |
146 # End: | 153 # End: |
147 # vim: set expandtab tabstop=2 shiftwidth=2: | 154 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |