diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-22 16:57:30 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-22 16:57:30 +0000 |
commit | 49b0187a4f1716da3dc9db4a824e881fef526377 (patch) | |
tree | 45237a34ab8b4f7d1000c14506f18f257e4bc863 /dbus/dbus.gyp | |
parent | 11001e4fbdfa9d49e08c65bb3db924af51fc1a96 (diff) | |
download | chromium_src-49b0187a4f1716da3dc9db4a824e881fef526377.zip chromium_src-49b0187a4f1716da3dc9db4a824e881fef526377.tar.gz chromium_src-49b0187a4f1716da3dc9db4a824e881fef526377.tar.bz2 |
Add libdbus dependency for Linux.
This is the first patch for our own D-Bus client library.
The D-Bus client code will be placed under 'dbus' on the top level directory
More patches will follow.
BUG=90036
TEST=try bot to make sure this won't break builds.
Review URL: http://codereview.chromium.org/7467031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93658 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/dbus.gyp')
-rw-r--r-- | dbus/dbus.gyp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dbus/dbus.gyp b/dbus/dbus.gyp new file mode 100644 index 0000000..f2f842b --- /dev/null +++ b/dbus/dbus.gyp @@ -0,0 +1,21 @@ +# Copyright (c) 2011 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, + }, + 'targets': [ + { + 'target_name': 'dbus', + 'type': 'static_library', + 'dependencies': [ + '../base/base.gyp:base', + '../build/linux/system.gyp:dbus', + ], + 'sources': [ + ], + }, + ], +} |