FTP is not supported on iOS.
This is not obvious, because net.gyp builds almost nothing on iOS currently, but we plan on keeping the ftp/ directory excluded from iOS builds.

BUG=145459

Review URL: https://chromiumcodereview.appspot.com/10880071

git-svn-id: http://src.chromium.org/svn/trunk/src/build@154130 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
droger@chromium.org 2012-08-30 13:18:11 +00:00
Родитель 007b3643a2
Коммит ea276993c2
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -308,6 +308,9 @@
# Enable the task manager by default.
'enable_task_manager%': 1,
# Enable FTP support by default.
'disable_ftp_support%': 0,
# XInput2 multitouch support is disabled by default (use_xi2_mt=0).
# Setting to non-zero value enables XI2 MT. When XI2 MT is enabled,
# the input value also defines the required XI2 minor minimum version.
@ -466,6 +469,7 @@
['OS=="ios"', {
'enable_automation%': 0,
'disable_ftp_support%': 1,
'remoting%': 0,
}],
@ -605,6 +609,7 @@
'enable_automation%': '<(enable_automation)',
'enable_printing%': '<(enable_printing)',
'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
'disable_ftp_support%': '<(disable_ftp_support)',
'force_rlz_use_chrome_net%': '<(force_rlz_use_chrome_net)',
'enable_task_manager%': '<(enable_task_manager)',
'sas_dll_path%': '<(sas_dll_path)',
@ -1617,6 +1622,9 @@
['enable_captive_portal_detection==1', {
'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
}],
['disable_ftp_support==1', {
'defines': ['DISABLE_FTP_SUPPORT=1'],
}],
], # conditions for 'target_defaults'
'target_conditions': [
['enable_wexit_time_destructors==1', {