| 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': 'static_library', | 12 'type': 'static_library', |
| 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 'sources': [ | 21 'sources': [ |
| 22 'bus.cc', | 22 'bus.cc', |
| 23 'bus.h', | 23 'bus.h', |
| 24 'exported_object.cc', | 24 'exported_object.cc', |
| 25 'exported_object.h', | 25 'exported_object.h', |
| 26 'file_descriptor.cc', |
| 27 'file_descriptor.h', |
| 26 'message.cc', | 28 'message.cc', |
| 27 'message.h', | 29 'message.h', |
| 28 'object_path.cc', | 30 'object_path.cc', |
| 29 'object_path.h', | 31 'object_path.h', |
| 30 'object_proxy.cc', | 32 'object_proxy.cc', |
| 31 'object_proxy.h', | 33 'object_proxy.h', |
| 32 'property.cc', | 34 'property.cc', |
| 33 'property.h', | 35 'property.h', |
| 34 'scoped_dbus_error.h', | 36 'scoped_dbus_error.h', |
| 35 'values_util.cc', | 37 'values_util.cc', |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'test_service.cc', | 93 'test_service.cc', |
| 92 'test_service.h', | 94 'test_service.h', |
| 93 'values_util_unittest.cc', | 95 'values_util_unittest.cc', |
| 94 ], | 96 ], |
| 95 'include_dirs': [ | 97 'include_dirs': [ |
| 96 '..', | 98 '..', |
| 97 ], | 99 ], |
| 98 }, | 100 }, |
| 99 ], | 101 ], |
| 100 } | 102 } |
| OLD | NEW |