| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 204 |
| 205 # Disable file manager component extension by default. | 205 # Disable file manager component extension by default. |
| 206 'file_manager_extension%': 0, | 206 'file_manager_extension%': 0, |
| 207 | 207 |
| 208 # Disable image loader component extension by default. | 208 # Disable image loader component extension by default. |
| 209 'image_loader_extension%': 0, | 209 'image_loader_extension%': 0, |
| 210 | 210 |
| 211 # Python version. | 211 # Python version. |
| 212 'python_ver%': '2.6', | 212 'python_ver%': '2.6', |
| 213 | 213 |
| 214 # Set ARM-v7 compilation flags | 214 # Set ARM architecture version. |
| 215 'armv7%': 0, | 215 'arm_version%': 7, |
| 216 | 216 |
| 217 # Set Neon compilation flags (only meaningful if armv7==1). | 217 # Set Neon compilation flags. |
| 218 'arm_neon%': 1, | 218 'arm_neon%': 1, |
| 219 | 219 |
| 220 # The system root for cross-compiles. Default: none. | 220 # The system root for cross-compiles. Default: none. |
| 221 'sysroot%': '', | 221 'sysroot%': '', |
| 222 | 222 |
| 223 # The system libdir used for this ABI. | 223 # The system libdir used for this ABI. |
| 224 'system_libdir%': 'lib', | 224 'system_libdir%': 'lib', |
| 225 | 225 |
| 226 # On Linux, we build with sse2 for Chromium builds. | 226 # On Linux, we build with sse2 for Chromium builds. |
| 227 'disable_sse2%': 0, | 227 'disable_sse2%': 0, |
| (...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 | 482 |
| 483 ['OS=="android"', { | 483 ['OS=="android"', { |
| 484 'enable_automation%': 0, | 484 'enable_automation%': 0, |
| 485 'enable_extensions%': 0, | 485 'enable_extensions%': 0, |
| 486 'enable_google_now%': 0, | 486 'enable_google_now%': 0, |
| 487 'enable_language_detection%': 1, | 487 'enable_language_detection%': 1, |
| 488 'enable_printing%': 0, | 488 'enable_printing%': 0, |
| 489 'enable_themes%': 0, | 489 'enable_themes%': 0, |
| 490 'proprietary_codecs%': 1, | 490 'proprietary_codecs%': 1, |
| 491 'remoting%': 0, | 491 'remoting%': 0, |
| 492 'arm_neon%': 0, |
| 492 }], | 493 }], |
| 493 | 494 |
| 494 # Enable autofill dialog for Android and Views-enabled platforms for now
. | 495 # Enable autofill dialog for Android and Views-enabled platforms for now
. |
| 495 ['toolkit_views==1 or (OS=="android" and android_webview_build==0)', { | 496 ['toolkit_views==1 or (OS=="android" and android_webview_build==0)', { |
| 496 'enable_autofill_dialog%': 1 | 497 'enable_autofill_dialog%': 1 |
| 497 }], | 498 }], |
| 498 | 499 |
| 499 ['OS=="android" and android_webview_build==0', { | 500 ['OS=="android" and android_webview_build==0', { |
| 500 'enable_webrtc%': 1, | 501 'enable_webrtc%': 1, |
| 501 }], | 502 }], |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 | 604 |
| 604 # Enable Settings App only on Windows. | 605 # Enable Settings App only on Windows. |
| 605 ['enable_app_list==1 and OS=="win"', { | 606 ['enable_app_list==1 and OS=="win"', { |
| 606 'enable_settings_app%': 1, | 607 'enable_settings_app%': 1, |
| 607 }, { | 608 }, { |
| 608 'enable_settings_app%': 0, | 609 'enable_settings_app%': 0, |
| 609 }], | 610 }], |
| 610 | 611 |
| 611 ['OS=="linux" and target_arch=="arm" and chromeos==0', { | 612 ['OS=="linux" and target_arch=="arm" and chromeos==0', { |
| 612 # Set some defaults for arm/linux chrome builds | 613 # Set some defaults for arm/linux chrome builds |
| 613 'armv7%': 1, | |
| 614 'linux_breakpad%': 0, | 614 'linux_breakpad%': 0, |
| 615 'linux_use_tcmalloc%': 0, | 615 'linux_use_tcmalloc%': 0, |
| 616 # sysroot needs to be an absolute path otherwise it generates | 616 # sysroot needs to be an absolute path otherwise it generates |
| 617 # incorrect results when passed to pkg-config | 617 # incorrect results when passed to pkg-config |
| 618 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/arm-sysroot', | 618 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/arm-sysroot', |
| 619 }], # OS=="linux" and target_arch=="arm" and chromeos==0 | 619 }], # OS=="linux" and target_arch=="arm" and chromeos==0 |
| 620 | 620 |
| 621 ['target_arch=="mipsel"', { | 621 ['target_arch=="mipsel"', { |
| 622 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot', | 622 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot', |
| 623 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu
-gcc', | 623 'CXX%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/bin/mipsel-linux-gnu
-gcc', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 'enable_viewport%': '<(enable_viewport)', | 702 'enable_viewport%': '<(enable_viewport)', |
| 703 'enable_hidpi%': '<(enable_hidpi)', | 703 'enable_hidpi%': '<(enable_hidpi)', |
| 704 'enable_touch_ui%': '<(enable_touch_ui)', | 704 'enable_touch_ui%': '<(enable_touch_ui)', |
| 705 'use_xi2_mt%':'<(use_xi2_mt)', | 705 'use_xi2_mt%':'<(use_xi2_mt)', |
| 706 'file_manager_extension%': '<(file_manager_extension)', | 706 'file_manager_extension%': '<(file_manager_extension)', |
| 707 'image_loader_extension%': '<(image_loader_extension)', | 707 'image_loader_extension%': '<(image_loader_extension)', |
| 708 'inside_chromium_build%': '<(inside_chromium_build)', | 708 'inside_chromium_build%': '<(inside_chromium_build)', |
| 709 'fastbuild%': '<(fastbuild)', | 709 'fastbuild%': '<(fastbuild)', |
| 710 'dcheck_always_on%': '<(dcheck_always_on)', | 710 'dcheck_always_on%': '<(dcheck_always_on)', |
| 711 'python_ver%': '<(python_ver)', | 711 'python_ver%': '<(python_ver)', |
| 712 'armv7%': '<(armv7)', | 712 'arm_version%': '<(arm_version)', |
| 713 'arm_neon%': '<(arm_neon)', | 713 'arm_neon%': '<(arm_neon)', |
| 714 'sysroot%': '<(sysroot)', | 714 'sysroot%': '<(sysroot)', |
| 715 'system_libdir%': '<(system_libdir)', | 715 'system_libdir%': '<(system_libdir)', |
| 716 'component%': '<(component)', | 716 'component%': '<(component)', |
| 717 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', | 717 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', |
| 718 'use_third_party_translations%': '<(use_third_party_translations)', | 718 'use_third_party_translations%': '<(use_third_party_translations)', |
| 719 'remoting%': '<(remoting)', | 719 'remoting%': '<(remoting)', |
| 720 'enable_one_click_signin%': '<(enable_one_click_signin)', | 720 'enable_one_click_signin%': '<(enable_one_click_signin)', |
| 721 'enable_webrtc%': '<(enable_webrtc)', | 721 'enable_webrtc%': '<(enable_webrtc)', |
| 722 'chromium_win_pch%': '<(chromium_win_pch)', | 722 'chromium_win_pch%': '<(chromium_win_pch)', |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 | 919 |
| 920 # Disable shadow stack keeping used by heapcheck to unwind the stacks | 920 # Disable shadow stack keeping used by heapcheck to unwind the stacks |
| 921 # better. | 921 # better. |
| 922 'linux_keep_shadow_stacks%': 0, | 922 'linux_keep_shadow_stacks%': 0, |
| 923 | 923 |
| 924 # Set to 1 to link against libgnome-keyring instead of using dlopen(). | 924 # Set to 1 to link against libgnome-keyring instead of using dlopen(). |
| 925 'linux_link_gnome_keyring%': 0, | 925 'linux_link_gnome_keyring%': 0, |
| 926 # Set to 1 to link against gsettings APIs instead of using dlopen(). | 926 # Set to 1 to link against gsettings APIs instead of using dlopen(). |
| 927 'linux_link_gsettings%': 0, | 927 'linux_link_gsettings%': 0, |
| 928 | 928 |
| 929 # Set Thumb compilation flags. | |
| 930 'arm_thumb%': 0, | |
| 931 | |
| 932 # Set ARM fpu compilation flags (only meaningful if armv7==1 and | |
| 933 # arm_neon==0). | |
| 934 'arm_fpu%': 'vfpv3', | |
| 935 | |
| 936 # Set ARM float abi compilation flag. | |
| 937 'arm_float_abi%': 'softfp', | |
| 938 | |
| 939 # Enable use of OpenMAX DL FFT routines. | 929 # Enable use of OpenMAX DL FFT routines. |
| 940 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', | 930 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', |
| 941 | 931 |
| 942 # Enable new NPDevice API. | 932 # Enable new NPDevice API. |
| 943 'enable_new_npdevice_api%': 0, | 933 'enable_new_npdevice_api%': 0, |
| 944 | 934 |
| 945 # Enable EGLImage support in OpenMAX | 935 # Enable EGLImage support in OpenMAX |
| 946 'enable_eglimage%': 1, | 936 'enable_eglimage%': 1, |
| 947 | 937 |
| 948 # Enable a variable used elsewhere throughout the GYP files to determine | 938 # Enable a variable used elsewhere throughout the GYP files to determine |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1167 # code compilation. | 1157 # code compilation. |
| 1168 'conditions': [ | 1158 'conditions': [ |
| 1169 ['target_arch == "ia32"', { | 1159 ['target_arch == "ia32"', { |
| 1170 'android_app_abi%': 'x86', | 1160 'android_app_abi%': 'x86', |
| 1171 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-x86/gd
bserver/gdbserver', | 1161 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-x86/gd
bserver/gdbserver', |
| 1172 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-x86', | 1162 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-x86', |
| 1173 'android_toolchain%': '<(android_ndk_root)/toolchains/x86-4.6/preb
uilt/<(host_os)-<(android_host_arch)/bin', | 1163 'android_toolchain%': '<(android_ndk_root)/toolchains/x86-4.6/preb
uilt/<(host_os)-<(android_host_arch)/bin', |
| 1174 }], | 1164 }], |
| 1175 ['target_arch=="arm"', { | 1165 ['target_arch=="arm"', { |
| 1176 'conditions': [ | 1166 'conditions': [ |
| 1177 ['armv7==0', { | 1167 ['arm_version<7', { |
| 1178 'android_app_abi%': 'armeabi', | 1168 'android_app_abi%': 'armeabi', |
| 1179 }, { | 1169 }, { |
| 1180 'android_app_abi%': 'armeabi-v7a', | 1170 'android_app_abi%': 'armeabi-v7a', |
| 1181 }], | 1171 }], |
| 1182 ], | 1172 ], |
| 1183 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-arm/gd
bserver/gdbserver', | 1173 'android_gdbserver%': '<(android_ndk_root)/prebuilt/android-arm/gd
bserver/gdbserver', |
| 1184 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-arm', | 1174 'android_ndk_sysroot%': '<(android_ndk_root)/platforms/android-14/
arch-arm', |
| 1185 'android_toolchain%': '<(android_ndk_root)/toolchains/arm-linux-an
droideabi-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin', | 1175 'android_toolchain%': '<(android_ndk_root)/toolchains/arm-linux-an
droideabi-4.6/prebuilt/<(host_os)-<(android_host_arch)/bin', |
| 1186 }], | 1176 }], |
| 1187 ], | 1177 ], |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1586 'win_debug_InlineFunctionExpansion': 0, | 1576 'win_debug_InlineFunctionExpansion': 0, |
| 1587 'win_debug_OmitFramePointers': 0, | 1577 'win_debug_OmitFramePointers': 0, |
| 1588 # Keep the code under #ifndef NVALGRIND. | 1578 # Keep the code under #ifndef NVALGRIND. |
| 1589 'release_valgrind_build': 1, | 1579 'release_valgrind_build': 1, |
| 1590 }], | 1580 }], |
| 1591 | 1581 |
| 1592 # Enable RLZ on Win, Mac and ChromeOS. | 1582 # Enable RLZ on Win, Mac and ChromeOS. |
| 1593 ['branding=="Chrome" and (OS=="win" or OS=="mac" or chromeos==1)', { | 1583 ['branding=="Chrome" and (OS=="win" or OS=="mac" or chromeos==1)', { |
| 1594 'enable_rlz%': 1, | 1584 'enable_rlz%': 1, |
| 1595 }], | 1585 }], |
| 1586 |
| 1587 # Set default compiler flags depending on ARM version. |
| 1588 ['arm_version==5 and android_webview_build==0', { |
| 1589 # Flags suitable for Android emulator |
| 1590 'arm_arch%': 'armv5te', |
| 1591 'arm_tune%': 'xscale', |
| 1592 'arm_fpu%': '', |
| 1593 'arm_float_abi%': 'soft', |
| 1594 'arm_thumb%': 0, |
| 1595 }], |
| 1596 ['arm_version==6 and android_webview_build==0', { |
| 1597 'arm_arch%': 'armv6', |
| 1598 'arm_tune%': '', |
| 1599 'arm_fpu%': '', |
| 1600 'arm_float_abi%': 'soft', |
| 1601 'arm_thumb%': 0, |
| 1602 }], |
| 1603 ['arm_version==7 and android_webview_build==0', { |
| 1604 'arm_arch%': 'armv7-a', |
| 1605 'arm_tune%': 'cortex-a8', |
| 1606 'conditions': [ |
| 1607 ['arm_neon==1', { |
| 1608 'arm_fpu%': 'neon', |
| 1609 }, { |
| 1610 'arm_fpu%': 'vfpv3-d16', |
| 1611 }], |
| 1612 ], |
| 1613 'arm_float_abi%': 'softfp', |
| 1614 'arm_thumb%': 1, |
| 1615 }], |
| 1616 |
| 1617 ['android_webview_build==1', { |
| 1618 # The WebView build gets its cpu-specific flags from the Android build s
ystem. |
| 1619 'arm_arch%': '', |
| 1620 'arm_tune%': '', |
| 1621 'arm_fpu%': '', |
| 1622 'arm_float_abi%': '', |
| 1623 'arm_thumb%': 0, |
| 1624 }], |
| 1625 |
| 1626 # Set armv7 for backward compatibility. |
| 1627 ['arm_version==7', { |
| 1628 'armv7': 1, |
| 1629 }, { |
| 1630 'armv7': 0, |
| 1631 }], |
| 1596 ], | 1632 ], |
| 1597 | 1633 |
| 1598 # List of default apps to install in new profiles. The first list contains | 1634 # List of default apps to install in new profiles. The first list contains |
| 1599 # the source files as found in svn. The second list, used only for linux, | 1635 # the source files as found in svn. The second list, used only for linux, |
| 1600 # contains the destination location for each of the files. When a crx | 1636 # contains the destination location for each of the files. When a crx |
| 1601 # is added or removed from the list, the chrome/browser/resources/ | 1637 # is added or removed from the list, the chrome/browser/resources/ |
| 1602 # default_apps/external_extensions.json file must also be updated. | 1638 # default_apps/external_extensions.json file must also be updated. |
| 1603 'default_apps_list': [ | 1639 'default_apps_list': [ |
| 1604 'browser/resources/default_apps/external_extensions.json', | 1640 'browser/resources/default_apps/external_extensions.json', |
| 1605 'browser/resources/default_apps/gmail.crx', | 1641 'browser/resources/default_apps/gmail.crx', |
| (...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2786 'target_conditions': [ | 2822 'target_conditions': [ |
| 2787 ['_toolset=="target"', { | 2823 ['_toolset=="target"', { |
| 2788 'cflags_cc': [ | 2824 'cflags_cc': [ |
| 2789 # The codesourcery arm-2009q3 toolchain warns at that the ABI | 2825 # The codesourcery arm-2009q3 toolchain warns at that the ABI |
| 2790 # has changed whenever it encounters a varargs function. This | 2826 # has changed whenever it encounters a varargs function. This |
| 2791 # silences those warnings, as they are not helpful and | 2827 # silences those warnings, as they are not helpful and |
| 2792 # clutter legitimate warnings. | 2828 # clutter legitimate warnings. |
| 2793 '-Wno-abi', | 2829 '-Wno-abi', |
| 2794 ], | 2830 ], |
| 2795 'conditions': [ | 2831 'conditions': [ |
| 2796 ['arm_thumb==1 and android_webview_build==0', { | 2832 ['arm_arch!=""', { |
| 2833 'cflags': [ |
| 2834 '-march=<(arm_arch)', |
| 2835 ], |
| 2836 }], |
| 2837 ['arm_tune!=""', { |
| 2838 'cflags': [ |
| 2839 '-mtune=<(arm_tune)', |
| 2840 ], |
| 2841 }], |
| 2842 ['arm_fpu!=""', { |
| 2843 'cflags': [ |
| 2844 '-mfpu=<(arm_fpu)', |
| 2845 ], |
| 2846 }], |
| 2847 ['arm_float_abi!=""', { |
| 2848 'cflags': [ |
| 2849 '-mfloat-abi=<(arm_float_abi)', |
| 2850 ], |
| 2851 }], |
| 2852 ['arm_thumb==1', { |
| 2797 'cflags': [ | 2853 'cflags': [ |
| 2798 '-mthumb', | 2854 '-mthumb', |
| 2799 ] | 2855 ] |
| 2800 }], | 2856 }], |
| 2801 ['armv7==1 and android_webview_build==0', { | |
| 2802 'cflags': [ | |
| 2803 '-march=armv7-a', | |
| 2804 '-mtune=cortex-a8', | |
| 2805 '-mfloat-abi=<(arm_float_abi)', | |
| 2806 ], | |
| 2807 'conditions': [ | |
| 2808 ['arm_neon==1', { | |
| 2809 'cflags': [ '-mfpu=neon', ], | |
| 2810 }, { | |
| 2811 'cflags': [ '-mfpu=<(arm_fpu)', ], | |
| 2812 }], | |
| 2813 ], | |
| 2814 }], | |
| 2815 ['OS=="android"', { | 2857 ['OS=="android"', { |
| 2816 # Most of the following flags are derived from what Android | 2858 # Most of the following flags are derived from what Android |
| 2817 # uses by default when building for arm, reference for which | 2859 # uses by default when building for arm, reference for which |
| 2818 # can be found in the following file in the Android NDK: | 2860 # can be found in the following file in the Android NDK: |
| 2819 # toolchains/arm-linux-androideabi-4.4.3/setup.mk | 2861 # toolchains/arm-linux-androideabi-4.4.3/setup.mk |
| 2820 'cflags': [ | 2862 'cflags': [ |
| 2821 # The tree-sra optimization (scalar replacement for | 2863 # The tree-sra optimization (scalar replacement for |
| 2822 # aggregates enabling subsequent optimizations) leads to | 2864 # aggregates enabling subsequent optimizations) leads to |
| 2823 # invalid code generation when using the Android NDK's | 2865 # invalid code generation when using the Android NDK's |
| 2824 # compiler (r5-r7). This can be verified using | 2866 # compiler (r5-r7). This can be verified using |
| 2825 # TestWebKitAPI's WTF.Checked_int8_t test. | 2867 # TestWebKitAPI's WTF.Checked_int8_t test. |
| 2826 '-fno-tree-sra', | 2868 '-fno-tree-sra', |
| 2827 '-fuse-ld=gold', | 2869 '-fuse-ld=gold', |
| 2828 '-Wno-psabi', | 2870 '-Wno-psabi', |
| 2829 ], | 2871 ], |
| 2830 # Android now supports .relro sections properly. | 2872 # Android now supports .relro sections properly. |
| 2831 # NOTE: While these flags enable the generation of .relro | 2873 # NOTE: While these flags enable the generation of .relro |
| 2832 # sections, the generated libraries can still be loaded on | 2874 # sections, the generated libraries can still be loaded on |
| 2833 # older Android platform versions. | 2875 # older Android platform versions. |
| 2834 'ldflags': [ | 2876 'ldflags': [ |
| 2835 '-Wl,-z,relro', | 2877 '-Wl,-z,relro', |
| 2836 '-Wl,-z,now', | 2878 '-Wl,-z,now', |
| 2837 '-fuse-ld=gold', | 2879 '-fuse-ld=gold', |
| 2838 ], | 2880 ], |
| 2839 'conditions': [ | 2881 'conditions': [ |
| 2840 ['arm_thumb==1 and android_webview_build==0', { | 2882 ['arm_thumb==1', { |
| 2841 'cflags': [ '-mthumb-interwork' ], | 2883 'cflags': [ '-mthumb-interwork' ], |
| 2842 }], | 2884 }], |
| 2843 ['armv7==0 and android_webview_build==0', { | |
| 2844 # Flags suitable for Android emulator | |
| 2845 'cflags': [ | |
| 2846 '-march=armv5te', | |
| 2847 '-mtune=xscale', | |
| 2848 '-msoft-float', | |
| 2849 ], | |
| 2850 'defines': [ | |
| 2851 '__ARM_ARCH_5__', | |
| 2852 '__ARM_ARCH_5T__', | |
| 2853 '__ARM_ARCH_5E__', | |
| 2854 '__ARM_ARCH_5TE__', | |
| 2855 ], | |
| 2856 }], | |
| 2857 ['profiling==1', { | 2885 ['profiling==1', { |
| 2858 'cflags': [ | 2886 'cflags': [ |
| 2859 '-marm', # Probably reduntant, but recommend by "perf"
docs. | 2887 '-marm', # Probably reduntant, but recommend by "perf"
docs. |
| 2860 '-mapcs-frame', # Seems required by -fno-omit-frame-po
inter. | 2888 '-mapcs-frame', # Seems required by -fno-omit-frame-po
inter. |
| 2861 ], | 2889 ], |
| 2862 }], | 2890 }], |
| 2863 ['clang==1', { | 2891 ['clang==1', { |
| 2864 'cflags!': [ | 2892 'cflags!': [ |
| 2865 # Clang does not support the following options. | 2893 # Clang does not support the following options. |
| 2866 '-mthumb-interwork', | 2894 '-mthumb-interwork', |
| (...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4227 # settings in target dicts. SYMROOT is a special case, because many other | 4255 # settings in target dicts. SYMROOT is a special case, because many other |
| 4228 # Xcode variables depend on it, including variables such as | 4256 # Xcode variables depend on it, including variables such as |
| 4229 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4257 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4230 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4258 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4231 # files to appear (when present) in the UI as actual files and not red | 4259 # files to appear (when present) in the UI as actual files and not red |
| 4232 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4260 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4233 # and therefore SYMROOT, needs to be set at the project level. | 4261 # and therefore SYMROOT, needs to be set at the project level. |
| 4234 'SYMROOT': '<(DEPTH)/xcodebuild', | 4262 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4235 }, | 4263 }, |
| 4236 } | 4264 } |
| OLD | NEW |