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("//net/features.gni") | 10 import("//net/features.gni") |
| 11 import("//ppapi/features/features.gni") |
11 import("//printing/features/features.gni") | 12 import("//printing/features/features.gni") |
12 | 13 |
13 # Please keep features in alphabetical order. | 14 # Please keep features in alphabetical order. |
14 declare_args() { | 15 declare_args() { |
15 # Whether the Java UI is being used (Java infobars and popups, Java native | 16 # Whether the Java UI is being used (Java infobars and popups, Java native |
16 # settings and first run experience, sign-in etc.). | 17 # settings and first run experience, sign-in etc.). |
17 # Default to true if compiling for android, but allow this being overriden | 18 # Default to true if compiling for android, but allow this being overriden |
18 # through the environment. | 19 # through the environment. |
19 android_java_ui = is_android | 20 android_java_ui = is_android |
20 | 21 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 84 |
84 # Every grit target in //chrome should apply these defines so that the | 85 # Every grit target in //chrome should apply these defines so that the |
85 # proper build flags can be set. | 86 # proper build flags can be set. |
86 chrome_grit_defines = [ | 87 chrome_grit_defines = [ |
87 "enable_app_list=$enable_app_list", | 88 "enable_app_list=$enable_app_list", |
88 "enable_background=$enable_background", | 89 "enable_background=$enable_background", |
89 "enable_extensions=$enable_extensions", | 90 "enable_extensions=$enable_extensions", |
90 "enable_google_now=$enable_google_now", | 91 "enable_google_now=$enable_google_now", |
91 "enable_hangout_services_extension=$enable_hangout_services_extension", | 92 "enable_hangout_services_extension=$enable_hangout_services_extension", |
92 "enable_hotwording=$enable_hotwording", | 93 "enable_hotwording=$enable_hotwording", |
| 94 "enable_plugins=$enable_plugins", |
93 "enable_print_preview=$enable_print_preview", | 95 "enable_print_preview=$enable_print_preview", |
94 "enable_printing=$_enable_printing", | 96 "enable_printing=$_enable_printing", |
95 "enable_service_discovery=$enable_service_discovery", | 97 "enable_service_discovery=$enable_service_discovery", |
96 "enable_vr_shell=$enable_vr_shell", | 98 "enable_vr_shell=$enable_vr_shell", |
97 "enable_webvr=$enable_webvr", | 99 "enable_webvr=$enable_webvr", |
98 "safe_browsing_mode=$safe_browsing_mode", | 100 "safe_browsing_mode=$safe_browsing_mode", |
99 "use_vulcanize=$use_vulcanize", | 101 "use_vulcanize=$use_vulcanize", |
100 ] | 102 ] |
OLD | NEW |