| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 # pages. https://github.com/polymer/vulcanize | 56 # pages. https://github.com/polymer/vulcanize |
| 57 use_vulcanize = true | 57 use_vulcanize = true |
| 58 } | 58 } |
| 59 | 59 |
| 60 chrome_grit_defines = [ | 60 chrome_grit_defines = [ |
| 61 "enable_background=$enable_background", | 61 "enable_background=$enable_background", |
| 62 "enable_google_now=$enable_google_now", | 62 "enable_google_now=$enable_google_now", |
| 63 "enable_hotwording=$enable_hotwording", | 63 "enable_hotwording=$enable_hotwording", |
| 64 "enable_service_discovery=$enable_service_discovery", | 64 "enable_service_discovery=$enable_service_discovery", |
| 65 "enable_vr_shell=$enable_vr_shell", | 65 "enable_vr_shell=$enable_vr_shell", |
| 66 "enable_webvr=$enable_webvr", |
| 66 "safe_browsing_mode=$safe_browsing_mode", | 67 "safe_browsing_mode=$safe_browsing_mode", |
| 67 "use_vulcanize=$use_vulcanize", | 68 "use_vulcanize=$use_vulcanize", |
| 68 ] | 69 ] |
| OLD | NEW |