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 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 }], | 889 }], |
890 # All Chrome builds have breakpad symbols, but only process the | 890 # All Chrome builds have breakpad symbols, but only process the |
891 # symbols from official builds. | 891 # symbols from official builds. |
892 ['(branding=="Chrome" and buildtype=="Official")', { | 892 ['(branding=="Chrome" and buildtype=="Official")', { |
893 'linux_dump_symbols%': 1, | 893 'linux_dump_symbols%': 1, |
894 }], | 894 }], |
895 ], | 895 ], |
896 }], # os_posix==1 and OS!="mac" and OS!="ios" | 896 }], # os_posix==1 and OS!="mac" and OS!="ios" |
897 ['OS=="ios"', { | 897 ['OS=="ios"', { |
898 'disable_nacl%': 1, | 898 'disable_nacl%': 1, |
| 899 'icu_use_data_file_flag%': 1, |
899 'use_system_bzip2%': 1, | 900 'use_system_bzip2%': 1, |
900 'use_system_libxml%': 1, | 901 'use_system_libxml%': 1, |
901 'use_system_sqlite%': 1, | 902 'use_system_sqlite%': 1, |
902 }], | 903 }], |
903 ['OS=="android"', { | 904 ['OS=="android"', { |
904 # Location of Android NDK. | 905 # Location of Android NDK. |
905 'variables': { | 906 'variables': { |
906 'variables': { | 907 'variables': { |
907 'android_ndk_root%': '<!(/bin/echo -n $ANDROID_NDK_ROOT)', | 908 'android_ndk_root%': '<!(/bin/echo -n $ANDROID_NDK_ROOT)', |
908 # Android uses x86 instead of ia32 for their target_arch | 909 # Android uses x86 instead of ia32 for their target_arch |
(...skipping 2473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3382 # settings in target dicts. SYMROOT is a special case, because many other | 3383 # settings in target dicts. SYMROOT is a special case, because many other |
3383 # Xcode variables depend on it, including variables such as | 3384 # Xcode variables depend on it, including variables such as |
3384 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3385 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3385 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3386 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3386 # files to appear (when present) in the UI as actual files and not red | 3387 # files to appear (when present) in the UI as actual files and not red |
3387 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3388 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3388 # and therefore SYMROOT, needs to be set at the project level. | 3389 # and therefore SYMROOT, needs to be set at the project level. |
3389 'SYMROOT': '<(DEPTH)/xcodebuild', | 3390 'SYMROOT': '<(DEPTH)/xcodebuild', |
3390 }, | 3391 }, |
3391 } | 3392 } |
OLD | NEW |