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

Side by Side Diff: chrome/common/features.gni

Issue 2794103002: Add initial support for native Linux desktop notifications (Closed)
Patch Set: Remove unused import Created 3 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 unified diff | Download patch
« no previous file with comments | « chrome/common/chrome_features.cc ('k') | 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//device/vr/features.gni") 9 import("//device/vr/features.gni")
10 import("//extensions/features/features.gni") 10 import("//extensions/features/features.gni")
(...skipping 24 matching lines...) Expand all
35 35
36 # Hangout services is an extension that adds extra features to Hangouts. 36 # Hangout services is an extension that adds extra features to Hangouts.
37 # It is enableable separately to facilitate testing. 37 # It is enableable separately to facilitate testing.
38 enable_hangout_services_extension = is_chrome_branded 38 enable_hangout_services_extension = is_chrome_branded
39 39
40 # 'Ok Google' hotwording is disabled by default. Set to true to enable. (This 40 # 'Ok Google' hotwording is disabled by default. Set to true to enable. (This
41 # will download a closed-source NaCl module at startup.) Chrome-branded 41 # will download a closed-source NaCl module at startup.) Chrome-branded
42 # ChromeOS builds have this enabled by default. 42 # ChromeOS builds have this enabled by default.
43 enable_hotwording = is_chrome_branded && is_chromeos 43 enable_hotwording = is_chrome_branded && is_chromeos
44 44
45 # Enables usage of the system-provided notification center.
46 enable_native_notifications =
47 is_android || is_mac || (is_desktop_linux && use_glib && use_gio)
48
45 enable_one_click_signin = 49 enable_one_click_signin =
46 is_win || is_mac || (is_linux && !is_chromeos && !is_chromecast) 50 is_win || is_mac || (is_linux && !is_chromeos && !is_chromecast)
47 51
48 # Set to true to bundle all the mash related mojo services into chrome. 52 # Set to true to bundle all the mash related mojo services into chrome.
49 # Specify --mash to chrome to have chrome start the mash environment. 53 # Specify --mash to chrome to have chrome start the mash environment.
50 enable_package_mash_services = is_chromeos 54 enable_package_mash_services = is_chromeos
51 55
52 enable_service_discovery = enable_mdns || is_mac 56 enable_service_discovery = enable_mdns || is_mac
53 57
54 # Enables use of the session service, which is enabled by default. 58 # Enables use of the session service, which is enabled by default.
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "enable_plugins=$enable_plugins", 98 "enable_plugins=$enable_plugins",
95 "enable_print_preview=$enable_print_preview", 99 "enable_print_preview=$enable_print_preview",
96 "enable_printing=$_enable_printing", 100 "enable_printing=$_enable_printing",
97 "enable_service_discovery=$enable_service_discovery", 101 "enable_service_discovery=$enable_service_discovery",
98 "enable_webrtc=$enable_webrtc", 102 "enable_webrtc=$enable_webrtc",
99 "enable_vr=$enable_vr", 103 "enable_vr=$enable_vr",
100 "mac_views_browser=$mac_views_browser", 104 "mac_views_browser=$mac_views_browser",
101 "safe_browsing_mode=$safe_browsing_mode", 105 "safe_browsing_mode=$safe_browsing_mode",
102 "use_vulcanize=$use_vulcanize", 106 "use_vulcanize=$use_vulcanize",
103 ] 107 ]
OLDNEW
« no previous file with comments | « chrome/common/chrome_features.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698