Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index 734e86d0df305373e687dbeedccb7e7316b20d55..2710e521f25d241326100aafd0940f14b2241094 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -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 |
| @@ -1048,6 +1048,9 @@ |
| # rlz codes for searches but do not use the library. |
| 'enable_rlz%': 0, |
| + # Enables MDNS support in chrome |
|
cbentzel
2013/04/18 17:41:02
To be consistent with other comments, use
# MDNS
Noam Samuel
2013/04/19 22:24:12
Done.
|
| + 'enable_mdns%' : 0, |
|
cbentzel
2013/04/18 17:41:02
Also - I wonder if this should be ENABLE_DNSSD or
|
| + |
| 'conditions': [ |
| ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_default_path))"=="True"', { |
| 'windows_sdk_path%': '<(windows_sdk_default_path)', |
| @@ -2108,6 +2111,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', { |