Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: extensions/test/BUILD.gn

Issue 2165023003: [Extensions] Use compiled feature files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/shell/common/shell_extensions_client.cc ('k') | extensions/test/test_api.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
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 }
OLDNEW
« no previous file with comments | « extensions/shell/common/shell_extensions_client.cc ('k') | extensions/test/test_api.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698