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

Unified Diff: third_party/WebKit/Source/build/scripts/make_media_feature_names.py

Issue 2638233002: Convert make_names and make_event_factory to use json5 config format. (Closed)
Patch Set: fix PLATFORM_EXPORT Created 3 years, 11 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: third_party/WebKit/Source/build/scripts/make_media_feature_names.py
diff --git a/third_party/WebKit/Source/build/scripts/make_media_feature_names.py b/third_party/WebKit/Source/build/scripts/make_media_feature_names.py
index 6f880512c13dc205bbcca669e60bb35811eedc7e..7800546c4b94fbc23c49e99b2dd3468bfcfb9cf2 100755
--- a/third_party/WebKit/Source/build/scripts/make_media_feature_names.py
+++ b/third_party/WebKit/Source/build/scripts/make_media_feature_names.py
@@ -5,7 +5,7 @@
# found in the LICENSE file.
import sys
-import in_generator
+import json5_generator
import make_names
import media_feature_symbol
@@ -16,4 +16,4 @@ class MakeMediaFeatureNamesWriter(make_names.MakeNamesWriter):
MakeMediaFeatureNamesWriter.filters['symbol'] = media_feature_symbol.getMediaFeatureSymbolWithSuffix('MediaFeature')
if __name__ == "__main__":
- in_generator.Maker(MakeMediaFeatureNamesWriter).main(sys.argv)
+ json5_generator.Maker(MakeMediaFeatureNamesWriter).main()

Powered by Google App Engine
This is Rietveld 408576698