Add GYP flag to chrome for enabling mDNS support.

BUG=233821

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@195874 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
noamsml@chromium.org 2013-04-23 19:25:27 +00:00
Родитель 823fb4b3e4
Коммит 3e14aca737
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -641,7 +641,7 @@
}, {
'test_isolation_mode%': 'noop',
}],
# Whether Android ARM build uses OpenMAX DL FFT.
# Whether Android ARM build uses OpenMAX DL FFT.
['OS=="android" and target_arch=="arm" and android_webview_build==0', {
# Currently only supported on Android ARM, without webview.
# When enabled, this will also enable WebAudio on Android
@ -1044,6 +1044,9 @@
# rlz codes for searches but do not use the library.
'enable_rlz%': 0,
# MDNS is disabled by default.
'enable_mdns%' : 0,
'conditions': [
['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_default_path))"=="True"', {
'windows_sdk_path%': '<(windows_sdk_default_path)',
@ -2104,6 +2107,9 @@
['spdy_proxy_auth_property != ""', {
'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'],
}],
['enable_mdns==1', {
'defines': ['ENABLE_MDNS=1'],
}]
], # conditions for 'target_defaults'
'target_conditions': [
['enable_wexit_time_destructors==1', {