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

Unified Diff: mojo/public/tools/bindings/pylib/generate/template_expander.py

Issue 226263002: Mojo: Move mojo/public/bindings to mojo/public/tools/bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 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: mojo/public/tools/bindings/pylib/generate/template_expander.py
diff --git a/mojo/public/bindings/pylib/generate/template_expander.py b/mojo/public/tools/bindings/pylib/generate/template_expander.py
similarity index 80%
rename from mojo/public/bindings/pylib/generate/template_expander.py
rename to mojo/public/tools/bindings/pylib/generate/template_expander.py
index 2bbb63eb9787377dce74dd7ebc0a03971fe05df9..1b3ee7489affbf58f69a7e7af191920bffdaed6c 100644
--- a/mojo/public/bindings/pylib/generate/template_expander.py
+++ b/mojo/public/tools/bindings/pylib/generate/template_expander.py
@@ -11,15 +11,10 @@ import sys
_current_dir = os.path.dirname(os.path.realpath(__file__))
# jinja2 is in the third_party directory (current directory is
-# mojo/public/bindings/pylib/generate).
+# mojo/public/tools/bindings/pylib/generate).
# Insert at front to override system libraries, and after path[0] == script dir
-sys.path.insert(1, os.path.join(_current_dir,
- os.pardir,
- os.pardir,
- os.pardir,
- os.pardir,
- os.pardir,
- 'third_party'))
+sys.path.insert(1, os.path.join(_current_dir, os.pardir, os.pardir, os.pardir,
+ os.pardir, os.pardir, os.pardir, 'third_party'))
import jinja2
« no previous file with comments | « mojo/public/tools/bindings/pylib/generate/run_mojom_tests.py ('k') | mojo/public/tools/bindings/pylib/parse/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698