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

Unified Diff: third_party/WebKit/Source/devtools/scripts/closure/closure_runner/build_compiler_runner_jar.py

Issue 2441163002: DevTools: clean up scripts folder (Closed)
Patch Set: Fix sys.path for chromevox to load rjsmin Created 4 years, 2 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/devtools/scripts/closure/closure_runner/build_compiler_runner_jar.py
diff --git a/third_party/WebKit/Source/devtools/scripts/compiler-runner/build_compiler_runner_jar.py b/third_party/WebKit/Source/devtools/scripts/closure/closure_runner/build_compiler_runner_jar.py
similarity index 91%
rename from third_party/WebKit/Source/devtools/scripts/compiler-runner/build_compiler_runner_jar.py
rename to third_party/WebKit/Source/devtools/scripts/closure/closure_runner/build_compiler_runner_jar.py
index c0e8daca82b02d90782ef9052244fed72eb65109..b47c1c2ef8557a051b6ae7b1ee0dfd7fb6d6ae43 100755
--- a/third_party/WebKit/Source/devtools/scripts/compiler-runner/build_compiler_runner_jar.py
+++ b/third_party/WebKit/Source/devtools/scripts/closure/closure_runner/build_compiler_runner_jar.py
@@ -16,10 +16,10 @@ if java_bin_path:
java_bin_path = os.path.join(java_bin_path, 'bin')
main_class = 'org.chromium.devtools.compiler.Runner'
-jar_name = 'closure-runner.jar'
+jar_name = 'closure_runner.jar'
src_dir = 'src'
script_path = os.path.dirname(os.path.abspath(__file__))
-closure_jar_relpath = os.path.join('..', 'closure', 'compiler.jar')
+closure_jar_relpath = os.path.join('..', 'compiler.jar')
src_path = rel_to_abs(src_dir)
@@ -59,7 +59,7 @@ def build_artifacts():
def help():
print 'usage: %s' % os.path.basename(__file__)
- print 'Builds compiler-runner.jar from the %s directory contents' % src_dir
+ print 'Builds closure_runner.jar from the %s directory contents' % src_dir
def main():

Powered by Google App Engine
This is Rietveld 408576698