summaryrefslogtreecommitdiffstats
path: root/o3d/installer/installer.gyp
diff options
context:
space:
mode:
authorgspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-06 22:17:39 +0000
committergspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-06 22:17:39 +0000
commit6a60ae4c2967bae910cbd1a1ff5a53c5f7d78a19 (patch)
treeac02524310011c60f7d4f5255f1df5b592b4ca5c /o3d/installer/installer.gyp
parent05c453db1e7a357eb2cc1b6ac67ff32a5256bb19 (diff)
downloadchromium_src-6a60ae4c2967bae910cbd1a1ff5a53c5f7d78a19.zip
chromium_src-6a60ae4c2967bae910cbd1a1ff5a53c5f7d78a19.tar.gz
chromium_src-6a60ae4c2967bae910cbd1a1ff5a53c5f7d78a19.tar.bz2
This completes the building of o3d.msi from the GYP build.
Review URL: http://codereview.chromium.org/164044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22680 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/installer/installer.gyp')
-rw-r--r--o3d/installer/installer.gyp42
1 files changed, 42 insertions, 0 deletions
diff --git a/o3d/installer/installer.gyp b/o3d/installer/installer.gyp
new file mode 100644
index 0000000..426d153
--- /dev/null
+++ b/o3d/installer/installer.gyp
@@ -0,0 +1,42 @@
+# Copyright (c) 2009 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'includes': [
+ '../build/common.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'installer',
+ 'type': 'none',
+ 'conditions': [
+ ['OS=="win"',
+ {
+ 'dependencies': [
+ 'win/installer.gyp:installer',
+ 'win/installer.gyp:extras_installer',
+ ],
+ },
+ ],
+ ['OS=="mac"',
+ {
+ 'dependencies': [
+ 'mac/installer.gyp:installer',
+ ],
+ },
+ ],
+ ['OS=="unix"',
+ {
+ 'dependencies': [
+ 'linux/installer.gyp:installer',
+ ],
+ },
+ ],
+ ],
+ },
+ ],
+}