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

Side by Side Diff: build/common.gypi

Issue 18374002: Compile with enable_mdns by default on Windows and Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 416
417 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86', 417 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
418 'wix_path%': '<(DEPTH)/third_party/wix', 418 'wix_path%': '<(DEPTH)/third_party/wix',
419 419
420 # Managed users are enabled by default. 420 # Managed users are enabled by default.
421 'enable_managed_users%': 1, 421 'enable_managed_users%': 1,
422 422
423 'spdy_proxy_auth_origin%' : '', 423 'spdy_proxy_auth_origin%' : '',
424 'spdy_proxy_auth_property%' : '', 424 'spdy_proxy_auth_property%' : '',
425 'spdy_proxy_auth_value%' : '', 425 'spdy_proxy_auth_value%' : '',
426 'enable_mdns%' : 0,
426 427
427 'conditions': [ 428 'conditions': [
428 # A flag for POSIX platforms 429 # A flag for POSIX platforms
429 ['OS=="win"', { 430 ['OS=="win"', {
430 'os_posix%': 0, 431 'os_posix%': 0,
431 }, { 432 }, {
432 'os_posix%': 1, 433 'os_posix%': 1,
433 }], 434 }],
434 435
435 # A flag for BSD platforms 436 # A flag for BSD platforms
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 }], 680 }],
680 # Whether Android ARM build uses OpenMAX DL FFT. 681 # Whether Android ARM build uses OpenMAX DL FFT.
681 ['OS=="android" and target_arch=="arm" and android_webview_build==0', { 682 ['OS=="android" and target_arch=="arm" and android_webview_build==0', {
682 # Currently only supported on Android ARM, without webview. 683 # Currently only supported on Android ARM, without webview.
683 # When enabled, this will also enable WebAudio on Android 684 # When enabled, this will also enable WebAudio on Android
684 # ARM. Default is enabled. 685 # ARM. Default is enabled.
685 'use_openmax_dl_fft%': 1, 686 'use_openmax_dl_fft%': 1,
686 }, { 687 }, {
687 'use_openmax_dl_fft%': 0, 688 'use_openmax_dl_fft%': 0,
688 }], 689 }],
690 ['OS=="win" or OS=="linux"', {
691 'enable_mdns%' : 1,
692 }]
689 ], 693 ],
690 694
691 # Set this to 1 to enable use of concatenated impulse responses 695 # Set this to 1 to enable use of concatenated impulse responses
692 # for the HRTF panner in WebAudio. 696 # for the HRTF panner in WebAudio.
693 'use_concatenated_impulse_responses': 1, 697 'use_concatenated_impulse_responses': 1,
694 698
695 # You can set the variable 'use_official_google_api_keys' to 1 699 # You can set the variable 'use_official_google_api_keys' to 1
696 # to use the Google-internal file containing official API keys 700 # to use the Google-internal file containing official API keys
697 # for Google Chrome even in a developer build. Setting this 701 # for Google Chrome even in a developer build. Setting this
698 # variable explicitly to 1 will cause your build to fail if the 702 # variable explicitly to 1 will cause your build to fail if the
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 'enable_app_list%': '<(enable_app_list)', 834 'enable_app_list%': '<(enable_app_list)',
831 'use_default_render_theme%': '<(use_default_render_theme)', 835 'use_default_render_theme%': '<(use_default_render_theme)',
832 'enable_settings_app%': '<(enable_settings_app)', 836 'enable_settings_app%': '<(enable_settings_app)',
833 'google_api_key%': '<(google_api_key)', 837 'google_api_key%': '<(google_api_key)',
834 'google_default_client_id%': '<(google_default_client_id)', 838 'google_default_client_id%': '<(google_default_client_id)',
835 'google_default_client_secret%': '<(google_default_client_secret)', 839 'google_default_client_secret%': '<(google_default_client_secret)',
836 'enable_managed_users%': '<(enable_managed_users)', 840 'enable_managed_users%': '<(enable_managed_users)',
837 'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)', 841 'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)',
838 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)', 842 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
839 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)', 843 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
844 'enable_mdns%' : '<(enable_mdns)',
840 845
841 # Use system mesa instead of bundled one. 846 # Use system mesa instead of bundled one.
842 'use_system_mesa%': 0, 847 'use_system_mesa%': 0,
843 848
844 # Use system nspr instead of the bundled one. 849 # Use system nspr instead of the bundled one.
845 'use_system_nspr%': 0, 850 'use_system_nspr%': 0,
846 851
847 # Use system protobuf instead of bundled one. 852 # Use system protobuf instead of bundled one.
848 'use_system_protobuf%': 0, 853 'use_system_protobuf%': 0,
849 854
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
1090 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', 1095 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))',
1091 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', 1096 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))',
1092 1097
1093 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', 1098 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files',
1094 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', 1099 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files',
1095 1100
1096 # Whether we are using the rlz library or not. Platforms like Android send 1101 # Whether we are using the rlz library or not. Platforms like Android send
1097 # rlz codes for searches but do not use the library. 1102 # rlz codes for searches but do not use the library.
1098 'enable_rlz%': 0, 1103 'enable_rlz%': 0,
1099 1104
1100 # MDNS is disabled by default.
1101 'enable_mdns%' : 0,
1102
1103 'conditions': [ 1105 'conditions': [
1104 # The version of GCC in use, set later in platforms that use GCC and have 1106 # The version of GCC in use, set later in platforms that use GCC and have
1105 # not explicitly chosen to build with clang. Currently, this means all 1107 # not explicitly chosen to build with clang. Currently, this means all
1106 # platforms except Windows, Mac and iOS. 1108 # platforms except Windows, Mac and iOS.
1107 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that 1109 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so that
1108 # it takes effect here. 1110 # it takes effect here.
1109 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa n==0 and tsan==0 and msan==0', { 1111 ['os_posix==1 and OS!="mac" and OS!="ios" and clang==0 and asan==0 and lsa n==0 and tsan==0 and msan==0', {
1110 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', 1112 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)',
1111 }, { 1113 }, {
1112 'gcc_version%': 0, 1114 'gcc_version%': 0,
(...skipping 3484 matching lines...) Expand 10 before | Expand all | Expand 10 after
4597 # settings in target dicts. SYMROOT is a special case, because many other 4599 # settings in target dicts. SYMROOT is a special case, because many other
4598 # Xcode variables depend on it, including variables such as 4600 # Xcode variables depend on it, including variables such as
4599 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4601 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4600 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4602 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4601 # files to appear (when present) in the UI as actual files and not red 4603 # files to appear (when present) in the UI as actual files and not red
4602 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4604 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4603 # and therefore SYMROOT, needs to be set at the project level. 4605 # and therefore SYMROOT, needs to be set at the project level.
4604 'SYMROOT': '<(DEPTH)/xcodebuild', 4606 'SYMROOT': '<(DEPTH)/xcodebuild',
4605 }, 4607 },
4606 } 4608 }
OLDNEW
« 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