| 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("//extensions/features/features.gni") | 9 import("//extensions/features/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 # Enables use of the session service, which is enabled by default. | 53 # Enables use of the session service, which is enabled by default. |
| 54 # Android stores them separately on the Java side. | 54 # Android stores them separately on the Java side. |
| 55 enable_session_service = !is_android && !is_ios && !is_chromecast | 55 enable_session_service = !is_android && !is_ios && !is_chromecast |
| 56 | 56 |
| 57 enable_supervised_users = !is_ios && !is_chromecast | 57 enable_supervised_users = !is_ios && !is_chromecast |
| 58 | 58 |
| 59 # Enables vr shell UI development on local or remote page. | 59 # Enables vr shell UI development on local or remote page. |
| 60 enable_vr_shell_ui_dev = false | 60 enable_vr_shell_ui_dev = false |
| 61 | 61 |
| 62 # Indicates if Wayland display server support is enabled. |
| 63 enable_wayland_server = is_chromeos |
| 64 |
| 62 # Enable native notifications via XPC services (mac only). | 65 # Enable native notifications via XPC services (mac only). |
| 63 # TODO(miguelg): remove this. | 66 # TODO(miguelg): remove this. |
| 64 enable_xpc_notifications = true | 67 enable_xpc_notifications = true |
| 65 | 68 |
| 66 # Indicates if the build is using PGO. | 69 # Indicates if the build is using PGO. |
| 67 pgo_build = chrome_pgo_phase > 0 | 70 pgo_build = chrome_pgo_phase > 0 |
| 68 | 71 |
| 69 # Optimize parts of Chrome's UI written with web technologies (HTML/CSS/JS) | 72 # Optimize parts of Chrome's UI written with web technologies (HTML/CSS/JS) |
| 70 # for runtime performance purposes. This does more work at compile time for | 73 # for runtime performance purposes. This does more work at compile time for |
| 71 # speed benefits at runtime (so we skip in debug builds). TODO(dbeam): rename | 74 # speed benefits at runtime (so we skip in debug builds). TODO(dbeam): rename |
| (...skipping 18 matching lines...) Expand all Loading... |
| 90 "enable_plugins=$enable_plugins", | 93 "enable_plugins=$enable_plugins", |
| 91 "enable_print_preview=$enable_print_preview", | 94 "enable_print_preview=$enable_print_preview", |
| 92 "enable_printing=$_enable_printing", | 95 "enable_printing=$_enable_printing", |
| 93 "enable_service_discovery=$enable_service_discovery", | 96 "enable_service_discovery=$enable_service_discovery", |
| 94 "enable_webrtc=$enable_webrtc", | 97 "enable_webrtc=$enable_webrtc", |
| 95 "enable_webvr=$enable_webvr", | 98 "enable_webvr=$enable_webvr", |
| 96 "mac_views_browser=$mac_views_browser", | 99 "mac_views_browser=$mac_views_browser", |
| 97 "safe_browsing_mode=$safe_browsing_mode", | 100 "safe_browsing_mode=$safe_browsing_mode", |
| 98 "use_vulcanize=$use_vulcanize", | 101 "use_vulcanize=$use_vulcanize", |
| 99 ] | 102 ] |
| OLD | NEW |