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

Unified Diff: build/android/gyp/javac.py

Issue 13432002: Add input content checking to some build scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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: build/android/gyp/javac.py
diff --git a/build/android/javac.py b/build/android/gyp/javac.py
similarity index 96%
rename from build/android/javac.py
rename to build/android/gyp/javac.py
index 2b19185c1b2e1c852adfe0228e6770fb38752adf..29680176c1015643096c994ded2ea1ba14100e05 100755
--- a/build/android/javac.py
+++ b/build/android/gyp/javac.py
@@ -9,6 +9,9 @@ import optparse
import os
import sys
+BUILD_ANDROID_DIR = os.path.join(os.path.dirname(__file__), '..')
Yaron 2013/04/03 22:05:35 Unused?
cjhopman 2013/04/03 22:17:56 Nope, the imported pylib below is in BUILD_ANDROID
+sys.path.append(BUILD_ANDROID_DIR)
+
from pylib import build_utils
def DoJavac(options):

Powered by Google App Engine
This is Rietveld 408576698