| 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 | 9 |
| 10 # Please keep features in alphabetical order. | 10 # Please keep features in alphabetical order. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 # Indicates if the build is using PGO. | 54 # Indicates if the build is using PGO. |
| 55 pgo_build = chrome_pgo_phase > 0 | 55 pgo_build = chrome_pgo_phase > 0 |
| 56 } | 56 } |
| 57 | 57 |
| 58 chrome_grit_defines = [ | 58 chrome_grit_defines = [ |
| 59 "enable_background=$enable_background", | 59 "enable_background=$enable_background", |
| 60 "enable_google_now=$enable_google_now", | 60 "enable_google_now=$enable_google_now", |
| 61 "enable_hotwording=$enable_hotwording", | 61 "enable_hotwording=$enable_hotwording", |
| 62 "enable_vr_shell=$enable_vr_shell", | 62 "enable_vr_shell=$enable_vr_shell", |
| 63 "enable_webvr=$enable_webvr", |
| 63 "safe_browsing_mode=$safe_browsing_mode", | 64 "safe_browsing_mode=$safe_browsing_mode", |
| 64 "use_vulcanize=$use_vulcanize", | 65 "use_vulcanize=$use_vulcanize", |
| 65 ] | 66 ] |
| OLD | NEW |