Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: dbus/dbus.gyp

Issue 7491029: Implement Bus and ObjectProxy classes for our D-Bus library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix wrong comments Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'dbus', 11 'target_name': 'dbus',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../build/linux/system.gyp:dbus', 15 '../build/linux/system.gyp:dbus',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'message.cc', 18 'message.cc',
19 'message.h', 19 'message.h',
20 'bus.cc',
21 'bus.h',
22 'exported_object.h',
23 'exported_object.cc',
24 'object_proxy.cc',
25 'object_proxy.h',
20 ], 26 ],
21 }, 27 },
22 { 28 {
23 'target_name': 'dbus_unittests', 29 'target_name': 'dbus_unittests',
24 'type': 'executable', 30 'type': 'executable',
25 'dependencies': [ 31 'dependencies': [
26 'dbus', 32 'dbus',
27 '../base/base.gyp:test_support_base', 33 '../base/base.gyp:test_support_base',
28 '../testing/gtest.gyp:gtest', 34 '../testing/gtest.gyp:gtest',
29 '../build/linux/system.gyp:dbus', 35 '../build/linux/system.gyp:dbus',
30 ], 36 ],
31 'sources': [ 37 'sources': [
32 '../base/test/run_all_unittests.cc', 38 '../base/test/run_all_unittests.cc',
33 'message_unittest.cc', 39 'message_unittest.cc',
40 'end_to_end_async_unittest.cc',
41 'end_to_end_sync_unittest.cc',
42 'test_service.cc',
43 'test_service.h',
34 ], 44 ],
35 'include_dirs': [ 45 'include_dirs': [
36 '..', 46 '..',
37 ], 47 ],
38 }, 48 },
39 ], 49 ],
40 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698