blob: 96322ea80bdfa88b87aa895c70ab014aeb85290c [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//extensions/features/features.gni")
import("//tools/json_schema_compiler/json_features.gni")
assert(enable_extensions)
json_features("test_api_features") {
feature_type = "APIFeature"
provider_class = "TestAPIFeatureProvider"
sources = [
"../common/api/_api_features.json",
]
}
json_features("test_permission_features") {
feature_type = "PermissionFeature"
provider_class = "TestPermissionFeatureProvider"
sources = [
"../common/api/_permission_features.json",
]
}
json_features("test_manifest_features") {
feature_type = "ManifestFeature"
provider_class = "TestManifestFeatureProvider"
sources = [
"../common/api/_manifest_features.json",
]
}
json_features("test_behavior_features") {
feature_type = "BehaviorFeature"
provider_class = "TestBehaviorFeatureProvider"
sources = [
"../common/api/_behavior_features.json",
]
}
group("extensions_features") {
public_deps = [
":test_api_features",
":test_behavior_features",
":test_manifest_features",
":test_permission_features",
]
}