OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
(...skipping 2256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2267 ['arm_neon==1', { | 2267 ['arm_neon==1', { |
2268 'arm_fpu%': 'neon', | 2268 'arm_fpu%': 'neon', |
2269 }, { | 2269 }, { |
2270 'arm_fpu%': 'vfpv3-d16', | 2270 'arm_fpu%': 'vfpv3-d16', |
2271 }], | 2271 }], |
2272 ], | 2272 ], |
2273 # Change the default to hard once the armhf transition is complete. | 2273 # Change the default to hard once the armhf transition is complete. |
2274 'arm_float_abi%': 'softfp', | 2274 'arm_float_abi%': 'softfp', |
2275 'arm_thumb%': 1, | 2275 'arm_thumb%': 1, |
2276 }], | 2276 }], |
2277 ['mips_arch_variant=="r2" and android_webview_build==0', { | |
rmcilroy
2014/11/20 17:16:30
nit - please add a newline between this and the ar
| |
2278 'mips_fpu_mode%': 'fp32', | |
2279 }], | |
2277 | 2280 |
2278 ['android_webview_build==1', { | 2281 ['android_webview_build==1', { |
2279 # The WebView build gets its cpu-specific flags from the Android build s ystem. | 2282 # The WebView build gets its cpu-specific flags from the Android build s ystem. |
2280 'arm_arch%': '', | 2283 'arm_arch%': '', |
2281 'arm_tune%': '', | 2284 'arm_tune%': '', |
2282 'arm_fpu%': '', | 2285 'arm_fpu%': '', |
2283 'arm_float_abi%': '', | 2286 'arm_float_abi%': '', |
2284 'arm_thumb%': 0, | 2287 'arm_thumb%': 0, |
2288 'mips_fpu_mode%': '', | |
2285 }], | 2289 }], |
2286 | 2290 |
2287 # Enable brlapi by default for chromeos. | 2291 # Enable brlapi by default for chromeos. |
2288 [ 'chromeos==1', { | 2292 [ 'chromeos==1', { |
2289 'use_brlapi%': 1, | 2293 'use_brlapi%': 1, |
2290 }], | 2294 }], |
2291 | 2295 |
2292 ['use_ozone==1 and ozone_auto_platforms==1', { | 2296 ['use_ozone==1 and ozone_auto_platforms==1', { |
2293 # Use test as the default platform. | 2297 # Use test as the default platform. |
2294 'ozone_platform%': 'test', | 2298 'ozone_platform%': 'test', |
(...skipping 3562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5857 # settings in target dicts. SYMROOT is a special case, because many other | 5861 # settings in target dicts. SYMROOT is a special case, because many other |
5858 # Xcode variables depend on it, including variables such as | 5862 # Xcode variables depend on it, including variables such as |
5859 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5863 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5860 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5864 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5861 # files to appear (when present) in the UI as actual files and not red | 5865 # files to appear (when present) in the UI as actual files and not red |
5862 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5866 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5863 # and therefore SYMROOT, needs to be set at the project level. | 5867 # and therefore SYMROOT, needs to be set at the project level. |
5864 'SYMROOT': '<(DEPTH)/xcodebuild', | 5868 'SYMROOT': '<(DEPTH)/xcodebuild', |
5865 }, | 5869 }, |
5866 } | 5870 } |
OLD | NEW |