OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 # 'sources/' rather than 'sources!'. | 152 # 'sources/' rather than 'sources!'. |
153 'sources/': [ | 153 'sources/': [ |
154 ['exclude', '^os_exchange_data_gtk.cc'], | 154 ['exclude', '^os_exchange_data_gtk.cc'], |
155 ['exclude', '^os_exchange_data.h'], | 155 ['exclude', '^os_exchange_data.h'], |
156 ], | 156 ], |
157 }], | 157 }], |
158 ], | 158 ], |
159 }], | 159 }], |
160 ], | 160 ], |
161 }, | 161 }, |
| 162 { |
| 163 'target_name': 'app_unittests', |
| 164 'type': 'executable', |
| 165 'msvs_guid': 'B4D59AE8-8D2F-97E1-A8E9-6D2826729530', |
| 166 'dependencies': [ |
| 167 '../app/app.gyp:app_base', |
| 168 '../net/net.gyp:net_test_support', |
| 169 '../skia/skia.gyp:skia', |
| 170 '../testing/gtest.gyp:gtest', |
| 171 '../third_party/icu38/icu38.gyp:icui18n', |
| 172 '../third_party/icu38/icu38.gyp:icuuc', |
| 173 '../third_party/libxml/libxml.gyp:libxml', |
| 174 ], |
| 175 'sources': [ |
| 176 'animation_unittest.cc', |
| 177 'gfx/font_unittest.cc', |
| 178 'gfx/icon_util_unittest.cc', |
| 179 'gfx/text_elider_unittest.cc', |
| 180 'l10n_util_unittest.cc', |
| 181 'os_exchange_data_win_unittest.cc', |
| 182 'run_all_unittests.cc', |
| 183 'test_suite.h', |
| 184 'tree_node_iterator_unittest.cc', |
| 185 'win_util_unittest.cc', |
| 186 ], |
| 187 'include_dirs': [ |
| 188 '..', |
| 189 ], |
| 190 'conditions': [ |
| 191 ['OS=="linux"', { |
| 192 # TODO: Move these dependencies to platform-neutral once these |
| 193 # projects are generated by GYP. |
| 194 'dependencies': [ |
| 195 '../build/linux/system.gyp:gtk', |
| 196 '../chrome/chrome.gyp:chrome_resources', |
| 197 '../chrome/chrome.gyp:chrome_strings', |
| 198 '../chrome/chrome.gyp:test_support_unit', |
| 199 ], |
| 200 }], |
| 201 ['OS!="win"', { |
| 202 'sources!': [ |
| 203 'gfx/icon_util_unittest.cc', |
| 204 'os_exchange_data_win_unittest.cc', |
| 205 'win_util_unittest.cc', |
| 206 ], |
| 207 }], |
| 208 ], |
| 209 }, |
162 ], | 210 ], |
163 } | 211 } |
OLD | NEW |