| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 'message_unittest.cc', | 104 'message_unittest.cc', |
| 105 'mock_unittest.cc', | 105 'mock_unittest.cc', |
| 106 'object_manager_unittest.cc', | 106 'object_manager_unittest.cc', |
| 107 'object_proxy_unittest.cc', | 107 'object_proxy_unittest.cc', |
| 108 'property_unittest.cc', | 108 'property_unittest.cc', |
| 109 'run_all_unittests.cc', | 109 'run_all_unittests.cc', |
| 110 'signal_sender_verification_unittest.cc', | 110 'signal_sender_verification_unittest.cc', |
| 111 'string_util_unittest.cc', | 111 'string_util_unittest.cc', |
| 112 'test_service.cc', | 112 'test_service.cc', |
| 113 'test_service.h', | 113 'test_service.h', |
| 114 'util_unittest.cc', |
| 114 'values_util_unittest.cc', | 115 'values_util_unittest.cc', |
| 115 ], | 116 ], |
| 116 'include_dirs': [ | 117 'include_dirs': [ |
| 117 '..', | 118 '..', |
| 118 ], | 119 ], |
| 119 }, | 120 }, |
| 120 { | 121 { |
| 121 'target_name': 'dbus_test_server', | 122 'target_name': 'dbus_test_server', |
| 122 'type': 'executable', | 123 'type': 'executable', |
| 123 'dependencies': [ | 124 'dependencies': [ |
| 124 '../base/base.gyp:test_support_base', | 125 '../base/base.gyp:test_support_base', |
| 125 '../base/base.gyp:base', | 126 '../base/base.gyp:base', |
| 126 '../build/linux/system.gyp:dbus', | 127 '../build/linux/system.gyp:dbus', |
| 127 'dbus', | 128 'dbus', |
| 128 ], | 129 ], |
| 129 'sources': [ | 130 'sources': [ |
| 130 'test_server.cc', | 131 'test_server.cc', |
| 131 'test_service.cc', | 132 'test_service.cc', |
| 132 'test_service.h', | 133 'test_service.h', |
| 133 ], | 134 ], |
| 134 'include_dirs': [ | 135 'include_dirs': [ |
| 135 '..', | 136 '..', |
| 136 ], | 137 ], |
| 137 }, | 138 }, |
| 138 ], | 139 ], |
| 139 } | 140 } |
| OLD | NEW |