| 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 { |
| 11 'target_name': 'dbus', | 11 'target_name': 'dbus', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../build/linux/system.gyp:dbus', | 15 '../build/linux/system.gyp:dbus', |
| 16 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 16 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 17 ], | 17 ], |
| 18 'export_dependent_settings': [ | 18 'export_dependent_settings': [ |
| 19 '../base/base.gyp:base', | 19 '../base/base.gyp:base', |
| 20 ], | 20 ], |
| 21 'defines': [ | 21 'defines': [ |
| 22 'DBUS_IMPLEMENTATION', | 22 'DBUS_IMPLEMENTATION', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 'bus.cc', | 25 'bus.cc', |
| 26 'bus.h', | 26 'bus.h', |
| 27 'dbus_export.h', | 27 'dbus_export.h', |
| 28 'dbus_statistics.cc', |
| 29 'dbus_statistics.h', |
| 28 'exported_object.cc', | 30 'exported_object.cc', |
| 29 'exported_object.h', | 31 'exported_object.h', |
| 30 'file_descriptor.cc', | 32 'file_descriptor.cc', |
| 31 'file_descriptor.h', | 33 'file_descriptor.h', |
| 32 'message.cc', | 34 'message.cc', |
| 33 'message.h', | 35 'message.h', |
| 34 'object_path.cc', | 36 'object_path.cc', |
| 35 'object_path.h', | 37 'object_path.h', |
| 36 'object_proxy.cc', | 38 'object_proxy.cc', |
| 37 'object_proxy.h', | 39 'object_proxy.h', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 '../base/base.gyp:test_support_base', | 86 '../base/base.gyp:test_support_base', |
| 85 '../build/linux/system.gyp:dbus', | 87 '../build/linux/system.gyp:dbus', |
| 86 '../testing/gmock.gyp:gmock', | 88 '../testing/gmock.gyp:gmock', |
| 87 '../testing/gtest.gyp:gtest', | 89 '../testing/gtest.gyp:gtest', |
| 88 'dbus', | 90 'dbus', |
| 89 'dbus_test_proto', | 91 'dbus_test_proto', |
| 90 'dbus_test_support', | 92 'dbus_test_support', |
| 91 ], | 93 ], |
| 92 'sources': [ | 94 'sources': [ |
| 93 'bus_unittest.cc', | 95 'bus_unittest.cc', |
| 96 'dbus_statistics_unittest.cc', |
| 94 'end_to_end_async_unittest.cc', | 97 'end_to_end_async_unittest.cc', |
| 95 'end_to_end_sync_unittest.cc', | 98 'end_to_end_sync_unittest.cc', |
| 96 'message_unittest.cc', | 99 'message_unittest.cc', |
| 97 'mock_unittest.cc', | 100 'mock_unittest.cc', |
| 98 'property_unittest.cc', | 101 'property_unittest.cc', |
| 99 'signal_sender_verification_unittest.cc', | 102 'signal_sender_verification_unittest.cc', |
| 100 'string_util_unittest.cc', | 103 'string_util_unittest.cc', |
| 101 'test_service.cc', | 104 'test_service.cc', |
| 102 'test_service.h', | 105 'test_service.h', |
| 103 'values_util_unittest.cc', | 106 'values_util_unittest.cc', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 119 'test_server.cc', | 122 'test_server.cc', |
| 120 'test_service.cc', | 123 'test_service.cc', |
| 121 'test_service.h', | 124 'test_service.h', |
| 122 ], | 125 ], |
| 123 'include_dirs': [ | 126 'include_dirs': [ |
| 124 '..', | 127 '..', |
| 125 ], | 128 ], |
| 126 }, | 129 }, |
| 127 ], | 130 ], |
| 128 } | 131 } |
| OLD | NEW |