summaryrefslogtreecommitdiffstats
path: root/o3d
diff options
context:
space:
mode:
authorbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-29 00:21:56 +0000
committerbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-29 00:21:56 +0000
commit62525634a6f5727216828f8e05a4f563be90dfeb (patch)
tree6513296df081ed0cc4200c15d60eed80a8dffe90 /o3d
parent7ea908b1dd924c7324b0a3622e7c9e25f4fac4a2 (diff)
downloadchromium_src-62525634a6f5727216828f8e05a4f563be90dfeb.zip
chromium_src-62525634a6f5727216828f8e05a4f563be90dfeb.tar.gz
chromium_src-62525634a6f5727216828f8e05a4f563be90dfeb.tar.bz2
Fixing some things that are failing in the linux o3d gyp build.
BUG=None TEST=None Review URL: http://codereview.chromium.org/209025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27442 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d')
-rw-r--r--o3d/DEPS_gyp7
-rw-r--r--o3d/plugin/idl/idl.gyp4
2 files changed, 10 insertions, 1 deletions
diff --git a/o3d/DEPS_gyp b/o3d/DEPS_gyp
index f16fee6..74d68a6 100644
--- a/o3d/DEPS_gyp
+++ b/o3d/DEPS_gyp
@@ -138,6 +138,13 @@ deps_os = {
# Linux, really.
"site_scons":
Var("chromium_trunk") + "/src/site_scons@" + Var("chromium_rev"),
+ # TODO(bradnelson): make these optional!!!
+ # These are currently required by gyp on linux (even though o3d isn't using
+ # data_pack or grit).
+ "tools/grit":
+ Var("chromium_trunk") + "/src/tools/grit@" + Var("chromium_rev"),
+ "tools/data_pack":
+ Var("chromium_trunk") + "/src/tools/data_pack@" + Var("chromium_rev"),
},
}
diff --git a/o3d/plugin/idl/idl.gyp b/o3d/plugin/idl/idl.gyp
index 8d34808..b996627 100644
--- a/o3d/plugin/idl/idl.gyp
+++ b/o3d/plugin/idl/idl.gyp
@@ -141,7 +141,9 @@
'<@(idl_files)',
],
'outputs': [
- '<(idl_out_path)/hash',
+ # TODO(bradnelson): fix gyp to be able to handle outputs without
+ # and extension on linux.
+ #'<(idl_out_path)/hash',
'<(idl_out_path)/globals_glue.cc',
'<(idl_out_path)/globals_glue.h',
'<!@(python idl_filenames.py \'<(idl_out_path)\' <@(idl_files))',