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

Side by Side Diff: dbus/dbus.gyp

Issue 11199007: Add sender verification of D-Bus signals. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: use the default 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
« no previous file with comments | « no previous file | dbus/object_proxy.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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'dbus_test_proto', 85 'dbus_test_proto',
86 'dbus_test_support', 86 'dbus_test_support',
87 ], 87 ],
88 'sources': [ 88 'sources': [
89 'bus_unittest.cc', 89 'bus_unittest.cc',
90 'end_to_end_async_unittest.cc', 90 'end_to_end_async_unittest.cc',
91 'end_to_end_sync_unittest.cc', 91 'end_to_end_sync_unittest.cc',
92 'message_unittest.cc', 92 'message_unittest.cc',
93 'mock_unittest.cc', 93 'mock_unittest.cc',
94 'property_unittest.cc', 94 'property_unittest.cc',
95 'signal_sender_verification_unittest.cc',
95 'string_util_unittest.cc', 96 'string_util_unittest.cc',
96 'test_service.cc', 97 'test_service.cc',
97 'test_service.h', 98 'test_service.h',
98 'values_util_unittest.cc', 99 'values_util_unittest.cc',
99 ], 100 ],
100 'include_dirs': [ 101 'include_dirs': [
101 '..', 102 '..',
102 ], 103 ],
103 }, 104 },
104 { 105 {
105 'target_name': 'dbus_test_server', 106 'target_name': 'dbus_test_server',
106 'type': 'executable', 107 'type': 'executable',
107 'dependencies': [ 108 'dependencies': [
108 '../base/base.gyp:test_support_base', 109 '../base/base.gyp:test_support_base',
109 '../base/base.gyp:base', 110 '../base/base.gyp:base',
110 '../build/linux/system.gyp:dbus', 111 '../build/linux/system.gyp:dbus',
111 'dbus', 112 'dbus',
112 ], 113 ],
113 'sources': [ 114 'sources': [
114 'test_server.cc', 115 'test_server.cc',
115 'test_service.cc', 116 'test_service.cc',
116 'test_service.h', 117 'test_service.h',
117 ], 118 ],
118 'include_dirs': [ 119 'include_dirs': [
119 '..', 120 '..',
120 ], 121 ],
121 }, 122 },
122 ], 123 ],
123 } 124 }
OLDNEW
« no previous file with comments | « no previous file | dbus/object_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698