mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
# 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",
|
|
]
|
|
}
|