diff options
author | slightlyoff@chromium.org <slightlyoff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-16 20:41:10 +0000 |
---|---|---|
committer | slightlyoff@chromium.org <slightlyoff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-16 20:41:10 +0000 |
commit | 16a984ab663a88a247e0b7275d6e3f78e5b099f4 (patch) | |
tree | 000a46aee9c827b67fcab0d9687091632629e053 /support | |
parent | 897473d213ff5639070580aec32b916b4ea5f74e (diff) | |
download | chromium_src-16a984ab663a88a247e0b7275d6e3f78e5b099f4.zip chromium_src-16a984ab663a88a247e0b7275d6e3f78e5b099f4.tar.gz chromium_src-16a984ab663a88a247e0b7275d6e3f78e5b099f4.tar.bz2 |
Initial stub for the support library, gyp file and targets. Chrome.exe and chrome.dll will depend on them.
Review URL: http://codereview.chromium.org/125155
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18525 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'support')
-rw-r--r-- | support/support.gyp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/support/support.gyp b/support/support.gyp new file mode 100644 index 0000000..3f215dc --- /dev/null +++ b/support/support.gyp @@ -0,0 +1,21 @@ +# 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': 'support', + 'type': 'none', + }, + # TODO(slightlyoff) + ], +} + +# vim: shiftwidth=2:et:ai:tabstop=2 |