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

Side by Side Diff: dbus/dbus.gyp

Issue 11364033: dbus: Make it possible to build as shared_library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CHROME_DBUS_EXPORT Created 8 years, 1 month 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) 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': '<(component)',
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 'defines': [
22 'DBUS_IMPLEMENTATION',
23 ],
21 'sources': [ 24 'sources': [
22 'bus.cc', 25 'bus.cc',
23 'bus.h', 26 'bus.h',
27 'dbus_export.h',
24 'exported_object.cc', 28 'exported_object.cc',
25 'exported_object.h', 29 'exported_object.h',
26 'file_descriptor.cc', 30 'file_descriptor.cc',
27 'file_descriptor.h', 31 'file_descriptor.h',
28 'message.cc', 32 'message.cc',
29 'message.h', 33 'message.h',
30 'object_path.cc', 34 'object_path.cc',
31 'object_path.h', 35 'object_path.h',
32 'object_proxy.cc', 36 'object_proxy.cc',
33 'object_proxy.h', 37 'object_proxy.h',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 'test_server.cc', 119 'test_server.cc',
116 'test_service.cc', 120 'test_service.cc',
117 'test_service.h', 121 'test_service.h',
118 ], 122 ],
119 'include_dirs': [ 123 'include_dirs': [
120 '..', 124 '..',
121 ], 125 ],
122 }, 126 },
123 ], 127 ],
124 } 128 }
OLDNEW
« no previous file with comments | « dbus/bus.h ('k') | dbus/dbus_export.h » ('j') | dbus/dbus_export.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698