| Index: chrome/common/extensions/api/api.gyp
|
| diff --git a/chrome/common/extensions/api/api.gyp b/chrome/common/extensions/api/api.gyp
|
| index da226f7788b6c9bec7ae8c010767144c194548ed..1f752f70034282cf0f83f154b8cd3706a0deb842 100644
|
| --- a/chrome/common/extensions/api/api.gyp
|
| +++ b/chrome/common/extensions/api/api.gyp
|
| @@ -22,5 +22,87 @@
|
| '<@(schema_dependencies)',
|
| ],
|
| },
|
| + {
|
| + # GN version: //chrome/common/extensions/api:extensions_features:api_features
|
| + 'target_name': 'api_features',
|
| + 'type': 'static_library',
|
| + 'variables': {
|
| + 'feature_class': 'APIFeature',
|
| + 'provider_class': 'APIFeatureProvider',
|
| + 'out_dir': 'chrome/common/extensions/api',
|
| + 'out_base_filename': 'api_features',
|
| + 'in_files': [
|
| + 'chrome/common/extensions/api/_api_features.json',
|
| + 'extensions/common/api/_api_features.json',
|
| + ],
|
| + },
|
| + 'inputs': ['<@(in_files)'],
|
| + 'sources': ['<@(in_files)'],
|
| + 'includes': ['../../../../tools/json_schema_compiler/json_features.gypi'],
|
| + },
|
| + {
|
| + # GN version: //chrome/common/extensions/api:extensions_features:behavior_features
|
| + 'target_name': 'behavior_features',
|
| + 'type': 'static_library',
|
| + 'variables': {
|
| + 'feature_class': 'BehaviorFeature',
|
| + 'provider_class': 'BehaviorFeatureProvider',
|
| + 'out_dir': 'chrome/common/extensions/api',
|
| + 'out_base_filename': 'behavior_features',
|
| + 'in_files': [
|
| + 'extensions/common/api/_behavior_features.json',
|
| + ],
|
| + },
|
| + 'inputs': ['<@(in_files)'],
|
| + 'sources': ['<@(in_files)'],
|
| + 'includes': ['../../../../tools/json_schema_compiler/json_features.gypi'],
|
| + },
|
| + {
|
| + # GN version: //chrome/common/extensions/api:extensions_features:manifest_features
|
| + 'target_name': 'manifest_features',
|
| + 'type': 'static_library',
|
| + 'variables': {
|
| + 'feature_class': 'ManifestFeature',
|
| + 'provider_class': 'ManifestFeatureProvider',
|
| + 'out_dir': 'chrome/common/extensions/api',
|
| + 'out_base_filename': 'manifest_features',
|
| + 'in_files': [
|
| + 'chrome/common/extensions/api/_manifest_features.json',
|
| + 'extensions/common/api/_manifest_features.json',
|
| + ],
|
| + },
|
| + 'inputs': ['<@(in_files)'],
|
| + 'sources': ['<@(in_files)'],
|
| + 'includes': ['../../../../tools/json_schema_compiler/json_features.gypi'],
|
| + },
|
| + {
|
| + # GN version: //chrome/common/extensions/api:extensions_features:permission_features
|
| + 'target_name': 'permission_features',
|
| + 'type': 'static_library',
|
| + 'variables': {
|
| + 'feature_class': 'PermissionFeature',
|
| + 'provider_class': 'PermissionFeatureProvider',
|
| + 'out_dir': 'chrome/common/extensions/api',
|
| + 'out_base_filename': 'permission_features',
|
| + 'in_files': [
|
| + 'chrome/common/extensions/api/_permission_features.json',
|
| + 'extensions/common/api/_permission_features.json',
|
| + ],
|
| + },
|
| + 'inputs': ['<@(in_files)'],
|
| + 'sources': ['<@(in_files)'],
|
| + 'includes': ['../../../../tools/json_schema_compiler/json_features.gypi'],
|
| + },
|
| + {
|
| + # GN version: //chrome/common/extensions/api:extensions_features
|
| + 'target_name': 'extensions_features',
|
| + 'type': 'none',
|
| + 'dependencies': [
|
| + 'api_features',
|
| + 'behavior_features',
|
| + 'manifest_features',
|
| + 'permission_features',
|
| + ],
|
| + },
|
| ],
|
| }
|
|
|