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

Unified Diff: mojo/public/tools/bindings/pylib/parse/mojo_lexer_unittest.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/parse/mojo_lexer_unittest.py
diff --git a/mojo/public/bindings/pylib/parse/mojo_lexer_unittest.py b/mojo/public/tools/bindings/pylib/parse/mojo_lexer_unittest.py
similarity index 97%
rename from mojo/public/bindings/pylib/parse/mojo_lexer_unittest.py
rename to mojo/public/tools/bindings/pylib/parse/mojo_lexer_unittest.py
index e43748eac604ae1e946529c92f841b5073807515..18be667bef982c766e8e51b2444d4138ae324879 100644
--- a/mojo/public/bindings/pylib/parse/mojo_lexer_unittest.py
+++ b/mojo/public/tools/bindings/pylib/parse/mojo_lexer_unittest.py
@@ -12,9 +12,10 @@ try:
# pylint: disable=F0401
from ply import lex
except ImportError:
+ # This assumes this file is in src/mojo/public/tools/bindings/pylib/parse/.
module_path, module_name = os.path.split(__file__)
third_party = os.path.join(module_path, os.pardir, os.pardir, os.pardir,
- os.pardir, os.pardir, 'third_party')
+ os.pardir, os.pardir, os.pardir, 'third_party')
sys.path.append(third_party)
# pylint: disable=F0401
from ply import lex
« no previous file with comments | « mojo/public/tools/bindings/pylib/parse/mojo_lexer.py ('k') | mojo/public/tools/bindings/pylib/parse/mojo_parser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698