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

Unified Diff: tools/json_schema_compiler/test/json_schema_compiler_tests.gyp

Issue 2151583003: [Extensions] Add extension feature generation code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add GYP support 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 side-by-side diff with in-line comments
Download patch
Index: tools/json_schema_compiler/test/json_schema_compiler_tests.gyp
diff --git a/tools/json_schema_compiler/test/json_schema_compiler_tests.gyp b/tools/json_schema_compiler/test/json_schema_compiler_tests.gyp
index b9ed611af6f7e80da8b9717df25e3e4a871a3530..6b43da207dae22f398eb18b1654f461e561fc8cc 100644
--- a/tools/json_schema_compiler/test/json_schema_compiler_tests.gyp
+++ b/tools/json_schema_compiler/test/json_schema_compiler_tests.gyp
@@ -45,5 +45,22 @@
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [4267, ],
},
+ {
+ 'target_name': 'feature_compiler_tests',
+ 'type': 'static_library',
+ 'variables': {
+ 'feature_class': 'APIFeature',
+ 'provider_class': 'TestAPIFeatureProvider',
+ 'out_dir': 'tools/json_schema_compiler/test',
+ 'out_base_filename': 'features_test',
+ 'in_files': [
+ 'tools/json_schema_compiler/test/features_test.json',
+ 'tools/json_schema_compiler/test/features_test2.json',
+ ],
+ },
+ 'inputs': ['<@(in_files)'],
+ 'sources': ['<@(in_files)'],
+ 'includes': ['../../../build/json_features.gypi'],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698