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 # This is the GN version of //chrome/chrome_features.gypi. | |
6 # Please keep in sync! | |
7 | |
8 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
9 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
10 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
11 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
12 | 9 |
13 # Please keep features in alphabetical order. | 10 # Please keep features in alphabetical order. |
14 declare_args() { | 11 declare_args() { |
15 # Whether the Java UI is being used (Java infobars and popups, Java native | 12 # Whether the Java UI is being used (Java infobars and popups, Java native |
16 # settings and first run experience, sign-in etc.). | 13 # settings and first run experience, sign-in etc.). |
17 # Default to true if compiling for android, but allow this being overriden | 14 # Default to true if compiling for android, but allow this being overriden |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 } | 52 } |
56 | 53 |
57 chrome_grit_defines = [ | 54 chrome_grit_defines = [ |
58 "enable_background=$enable_background", | 55 "enable_background=$enable_background", |
59 "enable_google_now=$enable_google_now", | 56 "enable_google_now=$enable_google_now", |
60 "enable_hotwording=$enable_hotwording", | 57 "enable_hotwording=$enable_hotwording", |
61 "enable_vr_shell=$enable_vr_shell", | 58 "enable_vr_shell=$enable_vr_shell", |
62 "safe_browsing_mode=$safe_browsing_mode", | 59 "safe_browsing_mode=$safe_browsing_mode", |
63 "use_vulcanize=$use_vulcanize", | 60 "use_vulcanize=$use_vulcanize", |
64 ] | 61 ] |
OLD | NEW |