| 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 'sources': [ | 17 'sources': [ |
| 18 'message.cc', |
| 19 'message.h', |
| 20 ], |
| 21 }, |
| 22 { |
| 23 'target_name': 'dbus_unittests', |
| 24 'type': 'executable', |
| 25 'dependencies': [ |
| 26 'dbus', |
| 27 '../base/base.gyp:test_support_base', |
| 28 '../testing/gtest.gyp:gtest', |
| 29 '../build/linux/system.gyp:dbus', |
| 30 ], |
| 31 'sources': [ |
| 32 '../base/test/run_all_unittests.cc', |
| 33 'message_unittest.cc', |
| 34 ], |
| 35 'include_dirs': [ |
| 36 '..', |
| 18 ], | 37 ], |
| 19 }, | 38 }, |
| 20 ], | 39 ], |
| 21 } | 40 } |
| OLD | NEW |