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

Side by Side Diff: dbus/dbus.gyp

Issue 12491014: Support D-Bus Object Manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Insufficient entrails in my offering Created 7 years, 8 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
« no previous file with comments | « dbus/bus.cc ('k') | dbus/mock_bus.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 {
(...skipping 15 matching lines...) Expand all
26 'bus.h', 26 'bus.h',
27 'dbus_export.h', 27 'dbus_export.h',
28 'dbus_statistics.cc', 28 'dbus_statistics.cc',
29 'dbus_statistics.h', 29 'dbus_statistics.h',
30 'exported_object.cc', 30 'exported_object.cc',
31 'exported_object.h', 31 'exported_object.h',
32 'file_descriptor.cc', 32 'file_descriptor.cc',
33 'file_descriptor.h', 33 'file_descriptor.h',
34 'message.cc', 34 'message.cc',
35 'message.h', 35 'message.h',
36 'object_manager.cc',
37 'object_manager.h',
36 'object_path.cc', 38 'object_path.cc',
37 'object_path.h', 39 'object_path.h',
38 'object_proxy.cc', 40 'object_proxy.cc',
39 'object_proxy.h', 41 'object_proxy.h',
40 'property.cc', 42 'property.cc',
41 'property.h', 43 'property.h',
42 'scoped_dbus_error.h', 44 'scoped_dbus_error.h',
43 'string_util.cc', 45 'string_util.cc',
44 'string_util.h', 46 'string_util.h',
45 'values_util.cc', 47 'values_util.cc',
(...skipping 18 matching lines...) Expand all
64 'dependencies': [ 66 'dependencies': [
65 '../build/linux/system.gyp:dbus', 67 '../build/linux/system.gyp:dbus',
66 '../testing/gmock.gyp:gmock', 68 '../testing/gmock.gyp:gmock',
67 'dbus', 69 'dbus',
68 ], 70 ],
69 'sources': [ 71 'sources': [
70 'mock_bus.cc', 72 'mock_bus.cc',
71 'mock_bus.h', 73 'mock_bus.h',
72 'mock_exported_object.cc', 74 'mock_exported_object.cc',
73 'mock_exported_object.h', 75 'mock_exported_object.h',
76 'mock_object_manager.cc',
77 'mock_object_manager.h',
74 'mock_object_proxy.cc', 78 'mock_object_proxy.cc',
75 'mock_object_proxy.h', 79 'mock_object_proxy.h',
76 ], 80 ],
77 'include_dirs': [ 81 'include_dirs': [
78 '..', 82 '..',
79 ], 83 ],
80 }, 84 },
81 { 85 {
82 'target_name': 'dbus_unittests', 86 'target_name': 'dbus_unittests',
83 'type': 'executable', 87 'type': 'executable',
84 'dependencies': [ 88 'dependencies': [
85 '../base/base.gyp:run_all_unittests', 89 '../base/base.gyp:run_all_unittests',
86 '../base/base.gyp:test_support_base', 90 '../base/base.gyp:test_support_base',
87 '../build/linux/system.gyp:dbus', 91 '../build/linux/system.gyp:dbus',
88 '../testing/gmock.gyp:gmock', 92 '../testing/gmock.gyp:gmock',
89 '../testing/gtest.gyp:gtest', 93 '../testing/gtest.gyp:gtest',
90 'dbus', 94 'dbus',
91 'dbus_test_proto', 95 'dbus_test_proto',
92 'dbus_test_support', 96 'dbus_test_support',
93 ], 97 ],
94 'sources': [ 98 'sources': [
95 'bus_unittest.cc', 99 'bus_unittest.cc',
96 'dbus_statistics_unittest.cc', 100 'dbus_statistics_unittest.cc',
97 'end_to_end_async_unittest.cc', 101 'end_to_end_async_unittest.cc',
98 'end_to_end_sync_unittest.cc', 102 'end_to_end_sync_unittest.cc',
99 'message_unittest.cc', 103 'message_unittest.cc',
100 'mock_unittest.cc', 104 'mock_unittest.cc',
105 'object_manager_unittest.cc',
101 'property_unittest.cc', 106 'property_unittest.cc',
102 'signal_sender_verification_unittest.cc', 107 'signal_sender_verification_unittest.cc',
103 'string_util_unittest.cc', 108 'string_util_unittest.cc',
104 'test_service.cc', 109 'test_service.cc',
105 'test_service.h', 110 'test_service.h',
106 'values_util_unittest.cc', 111 'values_util_unittest.cc',
107 ], 112 ],
108 'include_dirs': [ 113 'include_dirs': [
109 '..', 114 '..',
110 ], 115 ],
(...skipping 11 matching lines...) Expand all
122 'test_server.cc', 127 'test_server.cc',
123 'test_service.cc', 128 'test_service.cc',
124 'test_service.h', 129 'test_service.h',
125 ], 130 ],
126 'include_dirs': [ 131 'include_dirs': [
127 '..', 132 '..',
128 ], 133 ],
129 }, 134 },
130 ], 135 ],
131 } 136 }
OLDNEW
« no previous file with comments | « dbus/bus.cc ('k') | dbus/mock_bus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698