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

Side by Side Diff: dbus/dbus.gyp

Issue 8414048: Make sure the dependency on base is exported to components that depend on debus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
« no previous file with comments | « no previous file | no next file » | 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) 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 'export_dependent_settings': [
18 '../base/base.gyp:base',
19 ],
17 'sources': [ 20 'sources': [
18 'bus.cc', 21 'bus.cc',
19 'bus.h', 22 'bus.h',
20 'exported_object.cc', 23 'exported_object.cc',
21 'exported_object.h', 24 'exported_object.h',
22 'message.cc', 25 'message.cc',
23 'message.h', 26 'message.h',
24 'object_proxy.cc', 27 'object_proxy.cc',
25 'object_proxy.h', 28 'object_proxy.h',
26 'scoped_dbus_error.h', 29 'scoped_dbus_error.h',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'mock_unittest.cc', 71 'mock_unittest.cc',
69 'test_service.cc', 72 'test_service.cc',
70 'test_service.h', 73 'test_service.h',
71 ], 74 ],
72 'include_dirs': [ 75 'include_dirs': [
73 '..', 76 '..',
74 ], 77 ],
75 }, 78 },
76 ], 79 ],
77 } 80 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698