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

Side by Side Diff: dbus/dbus.gyp

Issue 9691067: Add a new 'run_all_unittests' target in base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'mock_object_proxy.h', 63 'mock_object_proxy.h',
64 ], 64 ],
65 'include_dirs': [ 65 'include_dirs': [
66 '..', 66 '..',
67 ], 67 ],
68 }, 68 },
69 { 69 {
70 'target_name': 'dbus_unittests', 70 'target_name': 'dbus_unittests',
71 'type': 'executable', 71 'type': 'executable',
72 'dependencies': [ 72 'dependencies': [
73 '../base/base.gyp:test_support_base', 73 '../base/base.gyp:run_all_unittests',
74 '../build/linux/system.gyp:dbus', 74 '../build/linux/system.gyp:dbus',
75 '../testing/gmock.gyp:gmock', 75 '../testing/gmock.gyp:gmock',
76 '../testing/gtest.gyp:gtest', 76 '../testing/gtest.gyp:gtest',
77 'dbus', 77 'dbus',
78 'dbus_test_proto', 78 'dbus_test_proto',
79 'dbus_test_support', 79 'dbus_test_support',
80 ], 80 ],
81 'sources': [ 81 'sources': [
82 '../base/test/run_all_unittests.cc',
83 'bus_unittest.cc', 82 'bus_unittest.cc',
84 'end_to_end_async_unittest.cc', 83 'end_to_end_async_unittest.cc',
85 'end_to_end_sync_unittest.cc', 84 'end_to_end_sync_unittest.cc',
86 'message_unittest.cc', 85 'message_unittest.cc',
87 'mock_unittest.cc', 86 'mock_unittest.cc',
88 'property_unittest.cc', 87 'property_unittest.cc',
89 'test_service.cc', 88 'test_service.cc',
90 'test_service.h', 89 'test_service.h',
91 ], 90 ],
92 'include_dirs': [ 91 'include_dirs': [
93 '..', 92 '..',
94 ], 93 ],
95 }, 94 },
96 ], 95 ],
97 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698