| 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 { |
| 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 ], | 16 ], |
| 17 'export_dependent_settings': [ |
| 18 '../base/base.gyp:base', |
| 19 ], |
| 17 'sources': [ | 20 'sources': [ |
| 18 'bus.cc', | 21 'bus.cc', |
| 19 'bus.h', | 22 'bus.h', |
| 20 'exported_object.cc', | 23 'exported_object.cc', |
| 21 'exported_object.h', | 24 'exported_object.h', |
| 22 'message.cc', | 25 'message.cc', |
| 23 'message.h', | 26 'message.h', |
| 24 'object_proxy.cc', | 27 'object_proxy.cc', |
| 25 'object_proxy.h', | 28 'object_proxy.h', |
| 26 'scoped_dbus_error.h', | 29 'scoped_dbus_error.h', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 'mock_unittest.cc', | 71 'mock_unittest.cc', |
| 69 'test_service.cc', | 72 'test_service.cc', |
| 70 'test_service.h', | 73 'test_service.h', |
| 71 ], | 74 ], |
| 72 'include_dirs': [ | 75 'include_dirs': [ |
| 73 '..', | 76 '..', |
| 74 ], | 77 ], |
| 75 }, | 78 }, |
| 76 ], | 79 ], |
| 77 } | 80 } |
| OLD | NEW |