diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-17 22:16:40 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-17 22:16:40 +0000 |
commit | b52e6b30f13514f414c6658adf91632531e505ee (patch) | |
tree | 07f4ec00304c1f6b012badca304692559bb8a682 /o3d/plugin | |
parent | b5218f50e208870f66058afc00dca77356447389 (diff) | |
download | chromium_src-b52e6b30f13514f414c6658adf91632531e505ee.zip chromium_src-b52e6b30f13514f414c6658adf91632531e505ee.tar.gz chromium_src-b52e6b30f13514f414c6658adf91632531e505ee.tar.bz2 |
This updates the DEPS for V8, Chrome and NaCl.
It also fixes two other minor problems:
a signed/unsigned mismatch in the gapi_decoder,
and a switch from sys.argv[0] to __file__ in codegen.py.
Review URL: http://codereview.chromium.org/208015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26504 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/plugin')
-rw-r--r-- | o3d/plugin/idl/codegen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/plugin/idl/codegen.py b/o3d/plugin/idl/codegen.py index 76bd40a..7494c21 100644 --- a/o3d/plugin/idl/codegen.py +++ b/o3d/plugin/idl/codegen.py @@ -20,7 +20,7 @@ import subprocess import sys import os -script_dir = os.path.join(os.path.dirname(sys.argv[0])) +script_dir = os.path.join(os.path.dirname(__file__)) third_party = os.path.normpath( os.path.join(script_dir, '..', '..', '..', 'third_party')) pythonpath = os.pathsep.join([os.path.join(third_party, 'gflags', 'python'), |