| 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.gni") | 9 import("//device/vr/features.gni") |
| 10 import("//extensions/features/features.gni") | 10 import("//extensions/features/features.gni") |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 enable_session_service = !is_android && !is_chromecast | 60 enable_session_service = !is_android && !is_chromecast |
| 61 | 61 |
| 62 enable_supervised_users = !is_chromecast | 62 enable_supervised_users = !is_chromecast |
| 63 | 63 |
| 64 # Enables vr shell UI development on local or remote page. | 64 # Enables vr shell UI development on local or remote page. |
| 65 enable_vr_shell_ui_dev = false | 65 enable_vr_shell_ui_dev = false |
| 66 | 66 |
| 67 # Indicates if Wayland display server support is enabled. | 67 # Indicates if Wayland display server support is enabled. |
| 68 enable_wayland_server = is_chromeos | 68 enable_wayland_server = is_chromeos |
| 69 | 69 |
| 70 # Enable native notifications via XPC services (mac only). | |
| 71 # TODO(miguelg): remove this. | |
| 72 enable_xpc_notifications = true | |
| 73 | |
| 74 # Indicates if the build is using PGO. | 70 # Indicates if the build is using PGO. |
| 75 pgo_build = chrome_pgo_phase > 0 | 71 pgo_build = chrome_pgo_phase > 0 |
| 76 | 72 |
| 77 # Optimize parts of Chrome's UI written with web technologies (HTML/CSS/JS) | 73 # Optimize parts of Chrome's UI written with web technologies (HTML/CSS/JS) |
| 78 # for runtime performance purposes. This does more work at compile time for | 74 # for runtime performance purposes. This does more work at compile time for |
| 79 # speed benefits at runtime (so we skip in debug builds). TODO(dbeam): rename | 75 # speed benefits at runtime (so we skip in debug builds). TODO(dbeam): rename |
| 80 # this flag "optimize_web_uis" because we run more than vulcanize these days. | 76 # this flag "optimize_web_uis" because we run more than vulcanize these days. |
| 81 use_vulcanize = !is_debug | 77 use_vulcanize = !is_debug |
| 82 } | 78 } |
| 83 | 79 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 98 "enable_plugins=$enable_plugins", | 94 "enable_plugins=$enable_plugins", |
| 99 "enable_print_preview=$enable_print_preview", | 95 "enable_print_preview=$enable_print_preview", |
| 100 "enable_printing=$_enable_printing", | 96 "enable_printing=$_enable_printing", |
| 101 "enable_service_discovery=$enable_service_discovery", | 97 "enable_service_discovery=$enable_service_discovery", |
| 102 "enable_webrtc=$enable_webrtc", | 98 "enable_webrtc=$enable_webrtc", |
| 103 "enable_vr=$enable_vr", | 99 "enable_vr=$enable_vr", |
| 104 "mac_views_browser=$mac_views_browser", | 100 "mac_views_browser=$mac_views_browser", |
| 105 "safe_browsing_mode=$safe_browsing_mode", | 101 "safe_browsing_mode=$safe_browsing_mode", |
| 106 "use_vulcanize=$use_vulcanize", | 102 "use_vulcanize=$use_vulcanize", |
| 107 ] | 103 ] |
| OLD | NEW |