diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 23:19:34 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-23 23:19:34 +0000 |
commit | 398841d7b307c88957f6cb5af38f557d942adbf8 (patch) | |
tree | 48947dd690f934a8c479c7b8ed5ce24a2fb9868b /o3d/documentation | |
parent | fa89702052f10d610859e2d724a7262743fe7418 (diff) | |
download | chromium_src-398841d7b307c88957f6cb5af38f557d942adbf8.zip chromium_src-398841d7b307c88957f6cb5af38f557d942adbf8.tar.gz chromium_src-398841d7b307c88957f6cb5af38f557d942adbf8.tar.bz2 |
Fixing several problems with the build.
- Had to make one line file_path_utils conditional on which build
system was building it (because GYP build and scons build use
different versions of chrome/base).
- Missed a couple instances of "file/" in the path to nixysa.
- New version of breakpad has a different API on the Mac.
Review URL: http://codereview.chromium.org/160056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21470 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/documentation')
-rwxr-xr-x | o3d/documentation/build_docs.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/o3d/documentation/build_docs.py b/o3d/documentation/build_docs.py index cc531a6..940f55f 100755 --- a/o3d/documentation/build_docs.py +++ b/o3d/documentation/build_docs.py @@ -163,7 +163,7 @@ def RunNixysa(idl_files, generate, output_dir, nixysa_options): python_exe = 'python'
Execute([
python_exe,
- MakePath('../third_party/nixysa/files/codegen.py'),
+ MakePath('../third_party/nixysa/codegen.py'),
'--binding-module=o3d:%s' % MakePath('../plugin/o3d_binding.py'),
'--generate=' + generate,
'--force',
@@ -359,4 +359,3 @@ def main(): if __name__ == '__main__':
main()
-
|