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