| 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 { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 'property_unittest.cc', | 94 'property_unittest.cc', |
| 95 'string_util_unittest.cc', | 95 'string_util_unittest.cc', |
| 96 'test_service.cc', | 96 'test_service.cc', |
| 97 'test_service.h', | 97 'test_service.h', |
| 98 'values_util_unittest.cc', | 98 'values_util_unittest.cc', |
| 99 ], | 99 ], |
| 100 'include_dirs': [ | 100 'include_dirs': [ |
| 101 '..', | 101 '..', |
| 102 ], | 102 ], |
| 103 }, | 103 }, |
| 104 { |
| 105 'target_name': 'dbus_test_server', |
| 106 'type': 'executable', |
| 107 'dependencies': [ |
| 108 '../base/base.gyp:test_support_base', |
| 109 '../base/base.gyp:base', |
| 110 '../build/linux/system.gyp:dbus', |
| 111 'dbus', |
| 112 ], |
| 113 'sources': [ |
| 114 'test_server.cc', |
| 115 'test_service.cc', |
| 116 'test_service.h', |
| 117 ], |
| 118 'include_dirs': [ |
| 119 '..', |
| 120 ], |
| 121 }, |
| 104 ], | 122 ], |
| 105 } | 123 } |
| OLD | NEW |