| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/json_schema_api.gni") | 7 import("//build/json_schema_api.gni") |
| 8 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 import("//extensions/features/features.gni") |
| 9 import("//tools/json_schema_compiler/json_features.gni") | 10 import("//tools/json_schema_compiler/json_features.gni") |
| 10 | 11 |
| 11 assert(enable_extensions) | 12 assert(enable_extensions) |
| 12 | 13 |
| 13 schema_sources = [ | 14 schema_sources = [ |
| 14 "accessibility_features.json", | 15 "accessibility_features.json", |
| 15 "accessibility_private.json", | 16 "accessibility_private.json", |
| 16 "activity_log_private.json", | 17 "activity_log_private.json", |
| 17 "autofill_private.idl", | 18 "autofill_private.idl", |
| 18 "automation.idl", | 19 "automation.idl", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 } | 267 } |
| 267 | 268 |
| 268 group("extensions_features") { | 269 group("extensions_features") { |
| 269 public_deps = [ | 270 public_deps = [ |
| 270 ":api_features", | 271 ":api_features", |
| 271 ":behavior_features", | 272 ":behavior_features", |
| 272 ":manifest_features", | 273 ":manifest_features", |
| 273 ":permission_features", | 274 ":permission_features", |
| 274 ] | 275 ] |
| 275 } | 276 } |
| OLD | NEW |