Index: build/common.gypi |
=================================================================== |
--- build/common.gypi (revision 268640) |
+++ build/common.gypi (working copy) |
@@ -480,6 +480,9 @@ |
# Enables used resource whitelist generation; disabled by default. |
'enable_resource_whitelist_generation%': 0, |
+ # Enable FILE support by default. |
+ 'disable_file_support%': 0, |
+ |
# Enable FTP support by default. |
'disable_ftp_support%': 0, |
@@ -1038,6 +1041,7 @@ |
'cld2_dynamic%': '<(cld2_dynamic)', |
'cld2_is_component%': '<(cld2_is_component)', |
'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', |
+ 'disable_file_support%': '<(disable_file_support)', |
'disable_ftp_support%': '<(disable_ftp_support)', |
'enable_task_manager%': '<(enable_task_manager)', |
'sas_dll_path%': '<(sas_dll_path)', |
@@ -2613,6 +2617,9 @@ |
['enable_settings_app==1', { |
'defines': ['ENABLE_SETTINGS_APP=1'], |
}], |
+ ['disable_file_support==1', { |
+ 'defines': ['DISABLE_FILE_SUPPORT=1'], |
+ }], |
['disable_ftp_support==1', { |
'defines': ['DISABLE_FTP_SUPPORT=1'], |
}], |