summaryrefslogtreecommitdiffstats
path: root/o3d
diff options
context:
space:
mode:
authorbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-09 23:55:46 +0000
committerbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-09 23:55:46 +0000
commit95f507b2cd21e5118b119318b9417d1c6e291f85 (patch)
tree883c4fd345906964270fb4996688366522558c66 /o3d
parent3f28b2c874a1eef2655f95bf01308466dd5078b7 (diff)
downloadchromium_src-95f507b2cd21e5118b119318b9417d1c6e291f85.zip
chromium_src-95f507b2cd21e5118b119318b9417d1c6e291f85.tar.gz
chromium_src-95f507b2cd21e5118b119318b9417d1c6e291f85.tar.bz2
Changing run hook for gyp so that depth as at the right level.
Unlike gyp files, the hooks are run at the level the .gclient file is at. So you want --depth=. (not ..) This was causing the path to the platform sdk used in chromium's common.gypi to be wrong. BUG=None TEST=None TBR=gspencer Review URL: http://codereview.chromium.org/164236 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22889 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d')
-rw-r--r--o3d/DEPS_gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/o3d/DEPS_gyp b/o3d/DEPS_gyp
index 950f915..55c3708 100644
--- a/o3d/DEPS_gyp
+++ b/o3d/DEPS_gyp
@@ -139,6 +139,6 @@ hooks = [
{
# A change to a .gyp, .gypi, or to GYP itself shound run the generator.
"pattern": "\\.gypi?$|[/\\\\]src[/\\\\]tools[/\\\\]gyp[/\\\\]",
- "action": ["python", "tools/gyp/gyp", "o3d/build/all.gyp", "--depth", ".."],
+ "action": ["python", "tools/gyp/gyp", "o3d/build/all.gyp", "--depth", "."],
},
]