OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
Dirk Pranke
2016/07/22 21:44:18
I wonder if it make sense to just move these targe
Devlin
2016/07/25 06:39:47
I think I'll save this for a followup. The gn rul
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 import("//tools/json_schema_compiler/json_features.gni") | |
6 | |
7 json_features("test_api_features") { | |
8 feature_class = "APIFeature" | |
9 provider_class = "TestAPIFeatureProvider" | |
10 sources = [ | |
11 "../common/api/_api_features.json", | |
12 ] | |
13 } | |
14 | |
15 json_features("test_permission_features") { | |
16 feature_class = "PermissionFeature" | |
17 provider_class = "TestPermissionFeatureProvider" | |
18 sources = [ | |
19 "../common/api/_permission_features.json", | |
20 ] | |
21 } | |
22 | |
23 json_features("test_manifest_features") { | |
24 feature_class = "ManifestFeature" | |
25 provider_class = "TestManifestFeatureProvider" | |
26 sources = [ | |
27 "../common/api/_manifest_features.json", | |
28 ] | |
29 } | |
30 | |
31 json_features("test_behavior_features") { | |
32 feature_class = "BehaviorFeature" | |
33 provider_class = "TestBehaviorFeatureProvider" | |
34 sources = [ | |
35 "../common/api/_behavior_features.json", | |
36 ] | |
37 } | |
38 | |
39 group("extensions_features") { | |
40 public_deps = [ | |
41 ":test_api_features", | |
42 ":test_behavior_features", | |
43 ":test_manifest_features", | |
44 ":test_permission_features", | |
45 ] | |
46 } | |
OLD | NEW |