| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 21 matching lines...) Expand all Loading... |
| 32 'target_name': 'dbus_test_support', | 32 'target_name': 'dbus_test_support', |
| 33 'type': 'static_library', | 33 'type': 'static_library', |
| 34 'dependencies': [ | 34 'dependencies': [ |
| 35 '../build/linux/system.gyp:dbus', | 35 '../build/linux/system.gyp:dbus', |
| 36 '../testing/gmock.gyp:gmock', | 36 '../testing/gmock.gyp:gmock', |
| 37 'dbus', | 37 'dbus', |
| 38 ], | 38 ], |
| 39 'sources': [ | 39 'sources': [ |
| 40 'mock_bus.cc', | 40 'mock_bus.cc', |
| 41 'mock_bus.h', | 41 'mock_bus.h', |
| 42 'mock_exported_object.cc', |
| 43 'mock_exported_object.h', |
| 42 'mock_object_proxy.cc', | 44 'mock_object_proxy.cc', |
| 43 'mock_object_proxy.h', | 45 'mock_object_proxy.h', |
| 44 ], | 46 ], |
| 45 'include_dirs': [ | 47 'include_dirs': [ |
| 46 '..', | 48 '..', |
| 47 ], | 49 ], |
| 48 }, | 50 }, |
| 49 { | 51 { |
| 50 'target_name': 'dbus_unittests', | 52 'target_name': 'dbus_unittests', |
| 51 'type': 'executable', | 53 'type': 'executable', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 66 'mock_unittest.cc', | 68 'mock_unittest.cc', |
| 67 'test_service.cc', | 69 'test_service.cc', |
| 68 'test_service.h', | 70 'test_service.h', |
| 69 ], | 71 ], |
| 70 'include_dirs': [ | 72 'include_dirs': [ |
| 71 '..', | 73 '..', |
| 72 ], | 74 ], |
| 73 }, | 75 }, |
| 74 ], | 76 ], |
| 75 } | 77 } |
| OLD | NEW |