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

Side by Side Diff: extensions/test/test_api.gyp

Issue 2165023003: [Extensions] Use compiled feature files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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/test/BUILD.gn ('k') | extensions/test/test_extensions_client.h » ('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 {
6 'targets': [
7 {
8 # GN version: //extensions/test:extensions_features:test_api_features
9 'target_name': 'test_api_features',
10 'type': 'static_library',
11 'variables': {
12 'feature_class': 'APIFeature',
13 'provider_class': 'TestAPIFeatureProvider',
14 'out_dir': 'extensions/test',
15 'out_base_filename': 'test_api_features',
16 'in_files': [
17 'extensions/common/api/_api_features.json',
18 ],
19 },
20 'inputs': ['<@(in_files)'],
21 'sources': ['<@(in_files)'],
22 'includes': ['../../tools/json_schema_compiler/json_features.gypi'],
23 },
24 {
25 # GN version: //extensions/test:extensions_features:test_behavior_features
26 'target_name': 'test_behavior_features',
27 'type': 'static_library',
28 'variables': {
29 'feature_class': 'BehaviorFeature',
30 'provider_class': 'TestBehaviorFeatureProvider',
31 'out_dir': 'extensions/test',
32 'out_base_filename': 'test_behavior_features',
33 'in_files': [
34 'extensions/common/api/_behavior_features.json',
35 ],
36 },
37 'inputs': ['<@(in_files)'],
38 'sources': ['<@(in_files)'],
39 'includes': ['../../tools/json_schema_compiler/json_features.gypi'],
40 },
41 {
42 # GN version: //extensions/test:extensions_features:test_manifest_features
43 'target_name': 'test_manifest_features',
44 'type': 'static_library',
45 'variables': {
46 'feature_class': 'ManifestFeature',
47 'provider_class': 'TestManifestFeatureProvider',
48 'out_dir': 'extensions/test',
49 'out_base_filename': 'test_manifest_features',
50 'in_files': [
51 'extensions/common/api/_manifest_features.json',
52 ],
53 },
54 'inputs': ['<@(in_files)'],
55 'sources': ['<@(in_files)'],
56 'includes': ['../../tools/json_schema_compiler/json_features.gypi'],
57 },
58 {
59 # GN version: //extensions/test:extensions_features:test_permission_featur es
60 'target_name': 'test_permission_features',
61 'type': 'static_library',
62 'variables': {
63 'feature_class': 'PermissionFeature',
64 'provider_class': 'TestPermissionFeatureProvider',
65 'out_dir': 'extensions/test',
66 'out_base_filename': 'test_permission_features',
67 'in_files': [
68 'extensions/common/api/_permission_features.json',
69 ],
70 },
71 'inputs': ['<@(in_files)'],
72 'sources': ['<@(in_files)'],
73 'includes': ['../../tools/json_schema_compiler/json_features.gypi'],
74 },
75 {
76 # GN version: //extensions/test:extensions_features
77 'target_name': 'extensions_features',
78 'type': 'none',
79 'dependencies': [
80 'test_api_features',
81 'test_behavior_features',
82 'test_manifest_features',
83 'test_permission_features',
84 ],
85 },
86 ],
87 }
OLDNEW
« no previous file with comments | « extensions/test/BUILD.gn ('k') | extensions/test/test_extensions_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698