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") |
11 import("//net/features.gni") | 11 import("//net/features.gni") |
12 import("//ppapi/features/features.gni") | 12 import("//ppapi/features/features.gni") |
13 import("//printing/features/features.gni") | 13 import("//printing/features/features.gni") |
| 14 import("//ui/base/ui_features.gni") |
14 | 15 |
15 # Please keep features in alphabetical order. | 16 # Please keep features in alphabetical order. |
16 declare_args() { | 17 declare_args() { |
17 # Whether the Java UI is being used (Java infobars and popups, Java native | 18 # Whether the Java UI is being used (Java infobars and popups, Java native |
18 # settings and first run experience, sign-in etc.). | 19 # settings and first run experience, sign-in etc.). |
19 # Default to true if compiling for android, but allow this being overriden | 20 # Default to true if compiling for android, but allow this being overriden |
20 # through the environment. | 21 # through the environment. |
21 android_java_ui = is_android | 22 android_java_ui = is_android |
22 | 23 |
23 enable_app_list = is_chromeos | 24 enable_app_list = is_chromeos |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 "enable_google_now=$enable_google_now", | 93 "enable_google_now=$enable_google_now", |
93 "enable_hangout_services_extension=$enable_hangout_services_extension", | 94 "enable_hangout_services_extension=$enable_hangout_services_extension", |
94 "enable_hotwording=$enable_hotwording", | 95 "enable_hotwording=$enable_hotwording", |
95 "enable_plugins=$enable_plugins", | 96 "enable_plugins=$enable_plugins", |
96 "enable_print_preview=$enable_print_preview", | 97 "enable_print_preview=$enable_print_preview", |
97 "enable_printing=$_enable_printing", | 98 "enable_printing=$_enable_printing", |
98 "enable_service_discovery=$enable_service_discovery", | 99 "enable_service_discovery=$enable_service_discovery", |
99 "enable_vr_shell=$enable_vr_shell", | 100 "enable_vr_shell=$enable_vr_shell", |
100 "enable_webrtc=$enable_webrtc", | 101 "enable_webrtc=$enable_webrtc", |
101 "enable_webvr=$enable_webvr", | 102 "enable_webvr=$enable_webvr", |
| 103 "mac_views_browser=$mac_views_browser", |
102 "safe_browsing_mode=$safe_browsing_mode", | 104 "safe_browsing_mode=$safe_browsing_mode", |
103 "use_vulcanize=$use_vulcanize", | 105 "use_vulcanize=$use_vulcanize", |
104 ] | 106 ] |
OLD | NEW |