Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(407)

Unified Diff: build/common.gypi

Issue 14188021: Add enable_mdns flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actually, no need to update net.gyp yet Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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', {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698