diff options
author | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-07 03:38:01 +0000 |
---|---|---|
committer | gspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-07 03:38:01 +0000 |
commit | d06f3951882b1a6974ea30582a70a48f4ef33a1f (patch) | |
tree | 6b26f2b1c67918eb0a701b41577bff5a987fd8fe /o3d/installer | |
parent | 6776a6d35445aefaa4b8b19cb33fdde7c9115f0a (diff) | |
download | chromium_src-d06f3951882b1a6974ea30582a70a48f4ef33a1f.zip chromium_src-d06f3951882b1a6974ea30582a70a48f4ef33a1f.tar.gz chromium_src-d06f3951882b1a6974ea30582a70a48f4ef33a1f.tar.bz2 |
This adds a stub for the mac installer so that the gyp generation won't fail on Macs.
Review URL: http://codereview.chromium.org/165109
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22717 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/installer')
-rw-r--r-- | o3d/installer/mac/installer.gyp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/o3d/installer/mac/installer.gyp b/o3d/installer/mac/installer.gyp new file mode 100644 index 0000000..ca67bd5 --- /dev/null +++ b/o3d/installer/mac/installer.gyp @@ -0,0 +1,35 @@ +# 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, + 'nppversion': '<!(python ../../plugin/version_info.py --commaversion)', + 'dotnppversion': '<!(python ../../plugin/version_info.py --version)', + + # We don't actually want the extras version to update by itself; + # it should change only when we actually add something to the + # installer or change the d3dx9 version. This version is + # therefore independent of the o3d plugin and sdk versions. + 'extrasversion': '0,1,1,0', + 'dotextrasversion': '0.1.1.0', + }, + 'includes': [ + '../../build/common.gypi', + ], + 'targets': [ + { + 'target_name': 'installer', + 'type': 'none', + 'dependencies': [ + '../../converter/converter.gyp:o3dConverter', + '../../breakpad/breakpad.gyp:reporter', + '../../google_update/google_update.gyp:getextras', + '../../documentation/documentation.gyp:*', + '../../plugin/plugin.gyp:npo3dautoplugin', + '../../samples/samples.gyp:samples', + ], + }, + ], +} |