| OLD | NEW |
| 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/features.gni") | 9 import("//device/vr/features/features.gni") |
| 10 import("//extensions/features/features.gni") | 10 import("//extensions/features/features.gni") |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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. | 45 # Enables usage of the system-provided notification center. |
| 46 enable_native_notifications = | 46 enable_native_notifications = |
| 47 is_android || is_mac || (is_desktop_linux && use_dbus) | 47 is_android || is_mac || (is_desktop_linux && use_dbus) |
| 48 | 48 |
| 49 enable_one_click_signin = | 49 enable_one_click_signin = |
| 50 is_win || is_mac || (is_linux && !is_chromeos && !is_chromecast) | 50 is_win || is_mac || (is_linux && !is_chromeos && !is_chromecast) |
| 51 | 51 |
| 52 # Indicates if Exo should use ozone gamepad. If this is false, exo will use |
| 53 # /device/gamepad as backend. |
| 54 enable_exo_ozone_gamepad = use_ozone |
| 55 |
| 52 # Set to true to bundle all the mash related mojo services into chrome. | 56 # Set to true to bundle all the mash related mojo services into chrome. |
| 53 # Specify --mash to chrome to have chrome start the mash environment. | 57 # Specify --mash to chrome to have chrome start the mash environment. |
| 54 enable_package_mash_services = is_chromeos | 58 enable_package_mash_services = is_chromeos |
| 55 | 59 |
| 56 enable_service_discovery = enable_mdns || is_mac | 60 enable_service_discovery = enable_mdns || is_mac |
| 57 | 61 |
| 58 # Enables use of the session service, which is enabled by default. | 62 # Enables use of the session service, which is enabled by default. |
| 59 # Android stores them separately on the Java side. | 63 # Android stores them separately on the Java side. |
| 60 enable_session_service = !is_android && !is_chromecast | 64 enable_session_service = !is_android && !is_chromecast |
| 61 | 65 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 91 "enable_plugins=$enable_plugins", | 95 "enable_plugins=$enable_plugins", |
| 92 "enable_print_preview=$enable_print_preview", | 96 "enable_print_preview=$enable_print_preview", |
| 93 "enable_printing=$_enable_printing", | 97 "enable_printing=$_enable_printing", |
| 94 "enable_service_discovery=$enable_service_discovery", | 98 "enable_service_discovery=$enable_service_discovery", |
| 95 "enable_webrtc=$enable_webrtc", | 99 "enable_webrtc=$enable_webrtc", |
| 96 "enable_vr=$enable_vr", | 100 "enable_vr=$enable_vr", |
| 97 "mac_views_browser=$mac_views_browser", | 101 "mac_views_browser=$mac_views_browser", |
| 98 "safe_browsing_mode=$safe_browsing_mode", | 102 "safe_browsing_mode=$safe_browsing_mode", |
| 99 "use_vulcanize=$use_vulcanize", | 103 "use_vulcanize=$use_vulcanize", |
| 100 ] | 104 ] |
| OLD | NEW |