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

Unified Diff: chrome/browser/resources/chromeos/chromevox/tools/jscompilerwrapper.py

Issue 665633002: Compile braille ime among other compiled js resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/lkcr
Patch Set: rebase Created 6 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: chrome/browser/resources/chromeos/chromevox/tools/jscompilerwrapper.py
diff --git a/chrome/browser/resources/chromeos/chromevox/tools/jscompilerwrapper.py b/chrome/browser/resources/chromeos/chromevox/tools/jscompilerwrapper.py
index 1e466165290c5d76a296e7676339c9c389dcb50e..11c7a1f7283a089c269d58cac839fb8afa701212 100755
--- a/chrome/browser/resources/chromeos/chromevox/tools/jscompilerwrapper.py
+++ b/chrome/browser/resources/chromeos/chromevox/tools/jscompilerwrapper.py
@@ -19,8 +19,8 @@ _CHROME_SOURCE_DIR = os.path.normpath(
# Compiler path.
_CLOSURE_COMPILER_JAR = os.path.join(
- _CHROME_SOURCE_DIR, 'third_party', 'WebKit', 'Source', 'devtools',
- 'scripts', 'closure', 'compiler.jar')
+ _CHROME_SOURCE_DIR, 'third_party', 'closure_compiler', 'compiler',
+ 'compiler.jar')
# List of compilation errors to enable with the --jscomp_errors flag.
_JSCOMP_ERRORS = [ 'accessControls', 'checkTypes', 'checkVars', 'invalidCasts',

Powered by Google App Engine
This is Rietveld 408576698