| 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 1852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1863 # Set default compiler flags depending on ARM version. | 1863 # Set default compiler flags depending on ARM version. |
| 1864 ['arm_version==6 and android_webview_build==0', { | 1864 ['arm_version==6 and android_webview_build==0', { |
| 1865 'arm_arch%': 'armv6', | 1865 'arm_arch%': 'armv6', |
| 1866 'arm_tune%': '', | 1866 'arm_tune%': '', |
| 1867 'arm_fpu%': 'vfp', | 1867 'arm_fpu%': 'vfp', |
| 1868 'arm_float_abi%': 'softfp', | 1868 'arm_float_abi%': 'softfp', |
| 1869 'arm_thumb%': 0, | 1869 'arm_thumb%': 0, |
| 1870 }], | 1870 }], |
| 1871 ['arm_version==7 and android_webview_build==0', { | 1871 ['arm_version==7 and android_webview_build==0', { |
| 1872 'arm_arch%': 'armv7-a', | 1872 'arm_arch%': 'armv7-a', |
| 1873 'arm_tune%': 'cortex-a8', | 1873 'arm_tune%': '', |
| 1874 'conditions': [ | 1874 'conditions': [ |
| 1875 ['arm_neon==1', { | 1875 ['arm_neon==1', { |
| 1876 'arm_fpu%': 'neon', | 1876 'arm_fpu%': 'neon', |
| 1877 }, { | 1877 }, { |
| 1878 'arm_fpu%': 'vfpv3-d16', | 1878 'arm_fpu%': 'vfpv3-d16', |
| 1879 }], | 1879 }], |
| 1880 ], | 1880 ], |
| 1881 # Change the default to hard once the armhf transition is complete. | 1881 # Change the default to hard once the armhf transition is complete. |
| 1882 'arm_float_abi%': 'softfp', | 1882 'arm_float_abi%': 'softfp', |
| 1883 'arm_thumb%': 1, | 1883 'arm_thumb%': 1, |
| (...skipping 2947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4831 # settings in target dicts. SYMROOT is a special case, because many other | 4831 # settings in target dicts. SYMROOT is a special case, because many other |
| 4832 # Xcode variables depend on it, including variables such as | 4832 # Xcode variables depend on it, including variables such as |
| 4833 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4833 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4834 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4834 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4835 # files to appear (when present) in the UI as actual files and not red | 4835 # files to appear (when present) in the UI as actual files and not red |
| 4836 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4836 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4837 # and therefore SYMROOT, needs to be set at the project level. | 4837 # and therefore SYMROOT, needs to be set at the project level. |
| 4838 'SYMROOT': '<(DEPTH)/xcodebuild', | 4838 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4839 }, | 4839 }, |
| 4840 } | 4840 } |
| OLD | NEW |