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

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

Issue 2571063002: Remove Blink-in-JS (Closed)
Patch Set: Created 4 years 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_private_script_source.py
diff --git a/third_party/WebKit/Source/build/scripts/make_private_script_source.py b/third_party/WebKit/Source/build/scripts/make_private_script_source.py
deleted file mode 100644
index 19078b2eae6dab7e22257ca46c41844712ceeb35..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/build/scripts/make_private_script_source.py
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Convert PrivateScript's sources to C++ constant strings.
-FIXME: We don't want to add more build scripts. Rewrite this script in grit. crbug.com/388121
-
-Usage:
-python make_private_script_source.py DESTINATION_FILE SOURCE_FILES
-"""
-
-import optparse
-import os
-import re
-import sys
-
-
-# We assume that X.js has a corresponding X.idl in the same directory.
-# If X is a partial interface, this method extracts the base name of the partial interface from X.idl.
-# Otherwise, this method returns None.
-def extract_partial_interface_name(filename):
- basename, ext = os.path.splitext(filename)
- assert ext == '.js'
- # PrivateScriptRunner.js is a special JS script to control private scripts,
- # and doesn't have a corresponding IDL file.
- if os.path.basename(basename) == 'PrivateScriptRunner':
- return None
- idl_filename = basename + '.idl'
- with open(idl_filename) as f:
- contents = f.read()
- match = re.search(r'partial\s+interface\s+(\w+)\s*{', contents)
- return match and match.group(1)
-
-
-def main():
- parser = optparse.OptionParser()
- parser.add_option('--for-testing', action="store_true", default=False)
-
- options, args = parser.parse_args()
- output_filename = args[0]
- input_filenames = args[1:]
- source_name, ext = os.path.splitext(os.path.basename(output_filename))
-
- contents = []
- contents.append('#ifndef %s_h\n' % source_name)
- contents.append('#define %s_h\n' % source_name)
- if options.for_testing:
- for input_filename in input_filenames:
- class_name, ext = os.path.splitext(os.path.basename(input_filename))
- with open(input_filename) as input_file:
- input_text = input_file.read()
- hex_values = ['0x{0:02x}'.format(ord(char)) for char in input_text]
- contents.append('const char kSourceOf%s[] = {\n %s\n};\n\n' % (
- class_name, ', '.join(hex_values)))
- contents.append('struct %s {' % source_name)
- contents.append("""
- const char* scriptClassName;
- const char* className;
- """)
- if options.for_testing:
- contents.append("""
- const char* source;
- size_t size;""")
- else:
- contents.append('const char* resourceFile;')
- contents.append("""
-};
-
-""")
-
- contents.append('struct %s k%s[] = {\n' % (source_name, source_name))
- for input_filename in input_filenames:
- script_class_name, ext = os.path.splitext(os.path.basename(input_filename))
- class_name = extract_partial_interface_name(input_filename) or script_class_name
- if options.for_testing:
- contents.append(' { "%s", "%s", kSourceOf%s, sizeof(kSourceOf%s) },\n' % (script_class_name, class_name, script_class_name, script_class_name))
- else:
- contents.append(' { "%s", "%s", "%s.js" },\n' % (script_class_name, class_name, script_class_name))
- contents.append('};\n')
- contents.append('#endif // %s_h\n' % source_name)
- with open(output_filename, 'w') as output_file:
- output_file.write("".join(contents))
-
-
-if __name__ == '__main__':
- sys.exit(main())

Powered by Google App Engine
This is Rietveld 408576698