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