| 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("//net/features.gni") |
| 9 | 10 |
| 10 # Please keep features in alphabetical order. | 11 # Please keep features in alphabetical order. |
| 11 declare_args() { | 12 declare_args() { |
| 12 # Whether the Java UI is being used (Java infobars and popups, Java native | 13 # Whether the Java UI is being used (Java infobars and popups, Java native |
| 13 # settings and first run experience, sign-in etc.). | 14 # settings and first run experience, sign-in etc.). |
| 14 # Default to true if compiling for android, but allow this being overriden | 15 # Default to true if compiling for android, but allow this being overriden |
| 15 # through the environment. | 16 # through the environment. |
| 16 android_java_ui = is_android | 17 android_java_ui = is_android |
| 17 | 18 |
| 18 enable_app_list = is_chromeos | 19 enable_app_list = is_chromeos |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "enable_background=$enable_background", | 73 "enable_background=$enable_background", |
| 73 "enable_google_now=$enable_google_now", | 74 "enable_google_now=$enable_google_now", |
| 74 "enable_hangout_services_extension=$enable_hangout_services_extension", | 75 "enable_hangout_services_extension=$enable_hangout_services_extension", |
| 75 "enable_hotwording=$enable_hotwording", | 76 "enable_hotwording=$enable_hotwording", |
| 76 "enable_service_discovery=$enable_service_discovery", | 77 "enable_service_discovery=$enable_service_discovery", |
| 77 "enable_vr_shell=$enable_vr_shell", | 78 "enable_vr_shell=$enable_vr_shell", |
| 78 "enable_webvr=$enable_webvr", | 79 "enable_webvr=$enable_webvr", |
| 79 "safe_browsing_mode=$safe_browsing_mode", | 80 "safe_browsing_mode=$safe_browsing_mode", |
| 80 "use_vulcanize=$use_vulcanize", | 81 "use_vulcanize=$use_vulcanize", |
| 81 ] | 82 ] |
| OLD | NEW |