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

Side by Side Diff: dbus/dbus.gyp

Issue 9378039: dbus: add ObjectPath type (Closed) Base URL: http://git.chromium.org/git/chromium/src@master
Patch Set: add patch for cryptohome_client Created 8 years, 10 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
« no previous file with comments | « dbus/bus_unittest.cc ('k') | dbus/end_to_end_async_unittest.cc » ('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 {
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 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 16 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
17 ], 17 ],
18 'export_dependent_settings': [ 18 'export_dependent_settings': [
19 '../base/base.gyp:base', 19 '../base/base.gyp:base',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'bus.cc', 22 'bus.cc',
23 'bus.h', 23 'bus.h',
24 'exported_object.cc', 24 'exported_object.cc',
25 'exported_object.h', 25 'exported_object.h',
26 'message.cc', 26 'message.cc',
27 'message.h', 27 'message.h',
28 'object_path.cc',
29 'object_path.h',
28 'object_proxy.cc', 30 'object_proxy.cc',
29 'object_proxy.h', 31 'object_proxy.h',
30 'scoped_dbus_error.h', 32 'scoped_dbus_error.h',
31 ], 33 ],
32 }, 34 },
33 { 35 {
34 # Protobuf compiler / generator test protocol buffer 36 # Protobuf compiler / generator test protocol buffer
35 'target_name': 'dbus_test_proto', 37 'target_name': 'dbus_test_proto',
36 'type': 'static_library', 38 'type': 'static_library',
37 'sources': [ 'test_proto.proto' ], 39 'sources': [ 'test_proto.proto' ],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'mock_unittest.cc', 85 'mock_unittest.cc',
84 'test_service.cc', 86 'test_service.cc',
85 'test_service.h', 87 'test_service.h',
86 ], 88 ],
87 'include_dirs': [ 89 'include_dirs': [
88 '..', 90 '..',
89 ], 91 ],
90 }, 92 },
91 ], 93 ],
92 } 94 }
OLDNEW
« no previous file with comments | « dbus/bus_unittest.cc ('k') | dbus/end_to_end_async_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698