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 2964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2975 }], | 2975 }], |
2976 ['enable_settings_app==1', { | 2976 ['enable_settings_app==1', { |
2977 'defines': ['ENABLE_SETTINGS_APP=1'], | 2977 'defines': ['ENABLE_SETTINGS_APP=1'], |
2978 }], | 2978 }], |
2979 ['disable_file_support==1', { | 2979 ['disable_file_support==1', { |
2980 'defines': ['DISABLE_FILE_SUPPORT=1'], | 2980 'defines': ['DISABLE_FILE_SUPPORT=1'], |
2981 }], | 2981 }], |
2982 ['disable_ftp_support==1', { | 2982 ['disable_ftp_support==1', { |
2983 'defines': ['DISABLE_FTP_SUPPORT=1'], | 2983 'defines': ['DISABLE_FTP_SUPPORT=1'], |
2984 }], | 2984 }], |
2985 ['use_icu_alternatives_on_android==1', { | |
2986 'defines': ['USE_ICU_ALTERNATIVES_ON_ANDROID=1'], | |
2987 }], | |
2988 ['enable_supervised_users==1', { | 2985 ['enable_supervised_users==1', { |
2989 'defines': ['ENABLE_SUPERVISED_USERS=1'], | 2986 'defines': ['ENABLE_SUPERVISED_USERS=1'], |
2990 }], | 2987 }], |
2991 ['spdy_proxy_auth_property != ""', { | 2988 ['spdy_proxy_auth_property != ""', { |
2992 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'], | 2989 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'], |
2993 }], | 2990 }], |
2994 ['spdy_proxy_auth_value != ""', { | 2991 ['spdy_proxy_auth_value != ""', { |
2995 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'], | 2992 'defines': ['SPDY_PROXY_AUTH_VALUE="<(spdy_proxy_auth_value)"'], |
2996 }], | 2993 }], |
2997 ['enable_mdns==1', { | 2994 ['enable_mdns==1', { |
(...skipping 3043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6041 # settings in target dicts. SYMROOT is a special case, because many other | 6038 # settings in target dicts. SYMROOT is a special case, because many other |
6042 # Xcode variables depend on it, including variables such as | 6039 # Xcode variables depend on it, including variables such as |
6043 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6040 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6044 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6041 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6045 # files to appear (when present) in the UI as actual files and not red | 6042 # files to appear (when present) in the UI as actual files and not red |
6046 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6043 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6047 # and therefore SYMROOT, needs to be set at the project level. | 6044 # and therefore SYMROOT, needs to be set at the project level. |
6048 'SYMROOT': '<(DEPTH)/xcodebuild', | 6045 'SYMROOT': '<(DEPTH)/xcodebuild', |
6049 }, | 6046 }, |
6050 } | 6047 } |
OLD | NEW |