diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-27 23:15:42 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-27 23:15:42 +0000 |
commit | 05b47f7a8c5451f858dc220df0e3a97542edace6 (patch) | |
tree | a2273d619f0625c9d44d40842845ccce2eac1045 /o3d/scons | |
parent | 5cdc8bdb4c847cefe7f4542bd10c9880c2c557a0 (diff) | |
download | chromium_src-05b47f7a8c5451f858dc220df0e3a97542edace6.zip chromium_src-05b47f7a8c5451f858dc220df0e3a97542edace6.tar.gz chromium_src-05b47f7a8c5451f858dc220df0e3a97542edace6.tar.bz2 |
This is the O3D source tree's initial commit to the Chromium tree. It
is not built or referenced at all by the chrome build yet, and doesn't
yet build in it's new home. We'll change that shortly.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17035 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/scons')
-rw-r--r-- | o3d/scons | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/o3d/scons b/o3d/scons new file mode 100644 index 0000000..ff8f01a --- /dev/null +++ b/o3d/scons @@ -0,0 +1,17 @@ +#!/bin/bash +# @@REWRITE(insert sh-copyright) +# @@REWRITE(delete-start) +# Copyright 2009 Google Inc. All Rights Reserved. +# Author: piman@google.com (Antoine Labour) +# @@REWRITE(delete-end) + +readonly SCRIPT_DIR="$(dirname "$0")" +readonly SCRIPT_DIR_ABS="$(cd "$SCRIPT_DIR" ; pwd)" + +# Use the batch file as an entry point if on cygwin. +if [ "$OSTYPE" = "cygwin" ]; then + "$SCRIPT_DIR_ABS/scons.bat" "$@" +else + "$SCRIPT_DIR_ABS/../third_party/scons/scons.py" -f main.scons "$@" +fi + |