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

Side by Side Diff: dbus/dbus.gyp

Issue 10540032: dbus: Add test_server.cc used for manual testing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | « no previous file | dbus/test_server.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 {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'property_unittest.cc', 94 'property_unittest.cc',
95 'string_util_unittest.cc', 95 'string_util_unittest.cc',
96 'test_service.cc', 96 'test_service.cc',
97 'test_service.h', 97 'test_service.h',
98 'values_util_unittest.cc', 98 'values_util_unittest.cc',
99 ], 99 ],
100 'include_dirs': [ 100 'include_dirs': [
101 '..', 101 '..',
102 ], 102 ],
103 }, 103 },
104 {
105 'target_name': 'dbus_test_server',
106 'type': 'executable',
107 'dependencies': [
108 '../base/base.gyp:test_support_base',
109 '../base/base.gyp:base',
110 '../build/linux/system.gyp:dbus',
111 'dbus',
112 ],
113 'sources': [
114 'test_server.cc',
115 'test_service.cc',
116 'test_service.h',
117 ],
118 'include_dirs': [
119 '..',
120 ],
121 },
104 ], 122 ],
105 } 123 }
OLDNEW
« no previous file with comments | « no previous file | dbus/test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698