aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/revert-2778794.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/chromium/revert-2778794.patch')
-rw-r--r--community/chromium/revert-2778794.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/community/chromium/revert-2778794.patch b/community/chromium/revert-2778794.patch
deleted file mode 100644
index 47069c7b731..00000000000
--- a/community/chromium/revert-2778794.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- ./third_party/closure_compiler/compiler.py.orig
-+++ ./third_party/closure_compiler/compiler.py
-@@ -13,8 +13,9 @@
-
-
- _CURRENT_DIR = os.path.join(os.path.dirname(__file__))
--_JAVA_PATH = os.path.join(_CURRENT_DIR, "..", "jdk", "current", "bin", "java")
--assert os.path.isfile(_JAVA_PATH), "java only allowed in android builds"
-+_JAVA_BIN = "java"
-+_JDK_PATH = os.path.join(_CURRENT_DIR, "..", "jdk", "current", "bin", _JAVA_BIN)
-+_JAVA_PATH = _JDK_PATH if os.path.isfile(_JDK_PATH) else _JAVA_BIN
-
- class Compiler(object):
- """Runs the Closure compiler on given source files to typecheck them