OLD | NEW |
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 16 matching lines...) Expand all Loading... |
27 'file_descriptor.h', | 27 'file_descriptor.h', |
28 'message.cc', | 28 'message.cc', |
29 'message.h', | 29 'message.h', |
30 'object_path.cc', | 30 'object_path.cc', |
31 'object_path.h', | 31 'object_path.h', |
32 'object_proxy.cc', | 32 'object_proxy.cc', |
33 'object_proxy.h', | 33 'object_proxy.h', |
34 'property.cc', | 34 'property.cc', |
35 'property.h', | 35 'property.h', |
36 'scoped_dbus_error.h', | 36 'scoped_dbus_error.h', |
| 37 'string_util.cc', |
| 38 'string_util.h', |
37 'values_util.cc', | 39 'values_util.cc', |
38 'values_util.h', | 40 'values_util.h', |
39 ], | 41 ], |
40 }, | 42 }, |
41 { | 43 { |
42 # Protobuf compiler / generator test protocol buffer | 44 # Protobuf compiler / generator test protocol buffer |
43 'target_name': 'dbus_test_proto', | 45 'target_name': 'dbus_test_proto', |
44 'type': 'static_library', | 46 'type': 'static_library', |
45 'sources': [ 'test_proto.proto' ], | 47 'sources': [ 'test_proto.proto' ], |
46 'variables': { | 48 'variables': { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 'dbus_test_proto', | 85 'dbus_test_proto', |
84 'dbus_test_support', | 86 'dbus_test_support', |
85 ], | 87 ], |
86 'sources': [ | 88 'sources': [ |
87 'bus_unittest.cc', | 89 'bus_unittest.cc', |
88 'end_to_end_async_unittest.cc', | 90 'end_to_end_async_unittest.cc', |
89 'end_to_end_sync_unittest.cc', | 91 'end_to_end_sync_unittest.cc', |
90 'message_unittest.cc', | 92 'message_unittest.cc', |
91 'mock_unittest.cc', | 93 'mock_unittest.cc', |
92 'property_unittest.cc', | 94 'property_unittest.cc', |
| 95 'string_util_unittest.cc', |
93 'test_service.cc', | 96 'test_service.cc', |
94 'test_service.h', | 97 'test_service.h', |
95 'values_util_unittest.cc', | 98 'values_util_unittest.cc', |
96 ], | 99 ], |
97 'include_dirs': [ | 100 'include_dirs': [ |
98 '..', | 101 '..', |
99 ], | 102 ], |
100 }, | 103 }, |
101 ], | 104 ], |
102 } | 105 } |
OLD | NEW |