Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: build.py

Issue 5288886037118976: Adblock Plus Crawler rewrite (Closed)
Patch Set: Addressed comments Created May 7, 2015, 12:04 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build.py
===================================================================
new file mode 100755
--- /dev/null
+++ b/build.py
@@ -0,0 +1,16 @@
+#!/usr/bin/env python
+# coding: utf-8
+
+import os, sys, subprocess
+
+BASE_DIR = os.path.dirname(os.path.abspath(__file__))
+DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py")
+
+try:
+ subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR])
+except subprocess.CalledProcessError as e:
+ print >>sys.stderr, e
+ print >>sys.stderr, "Failed to ensure dependencies being up-to-date!"
+
+import buildtools.build
+buildtools.build.processArgs(BASE_DIR, sys.argv)
« no previous file with comments | « README.md ('k') | chrome/locale/en-US/meta.properties » ('j') | lib/commandLine.js » ('J')

Powered by Google App Engine
This is Rietveld