OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'type': '<(gtest_target_type)', | 6 'type': '<(gtest_target_type)', |
7 'dependencies': [ | 7 'dependencies': [ |
8 '../../base/base.gyp:base', | 8 '../../base/base.gyp:base', |
9 '../../base/base.gyp:test_support_base', | 9 '../../base/base.gyp:test_support_base', |
10 '../../net/net.gyp:net', | 10 '../../net/net.gyp:net', |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
184 '../events/events.gyp:events', | 184 '../events/events.gyp:events', |
185 '../events/events.gyp:events_base', | 185 '../events/events.gyp:events_base', |
186 '../events/events.gyp:events_test_support', | 186 '../events/events.gyp:events_test_support', |
187 '../events/platform/events_platform.gyp:events_platform', | 187 '../events/platform/events_platform.gyp:events_platform', |
188 ], | 188 ], |
189 }], | 189 }], |
190 ['chromeos==1', { | 190 ['chromeos==1', { |
191 'dependencies': [ | 191 'dependencies': [ |
192 '../../chromeos/chromeos.gyp:chromeos', | 192 '../../chromeos/chromeos.gyp:chromeos', |
193 '../aura/aura.gyp:aura_test_support', | 193 '../aura/aura.gyp:aura_test_support', |
194 '../chromeos/ui_chromeos.gyp:ui_chromeos', | |
195 '../chromeos/ui_chromeos.gyp:ui_chromeos_resources', | 194 '../chromeos/ui_chromeos.gyp:ui_chromeos_resources', |
196 '../chromeos/ui_chromeos.gyp:ui_chromeos_strings', | 195 '../chromeos/ui_chromeos.gyp:ui_chromeos_strings', |
197 '../events/events.gyp:gesture_detection', | 196 '../events/events.gyp:gesture_detection', |
198 '../message_center/message_center.gyp:message_center', | 197 '../message_center/message_center.gyp:message_center', |
199 '../views/views.gyp:views', | 198 '../views/views.gyp:views', |
200 '../views/views.gyp:views_test_support', | 199 '../views/views.gyp:views_test_support', |
201 ], | 200 ], |
202 'sources': [ | 201 'sources': [ |
203 # TODO(pkotwicz): Move tests to their own target (crbug.com/432538) | 202 # TODO(pkotwicz): Move tests to their own target (crbug.com/432538) |
203 'ime/chromeos/component_extension_ime_manager_unittest.cc', | |
Yuki
2014/11/20 09:23:03
The TODO comment doesn't apply to your new files.
Shu Chen
2014/11/20 14:32:27
Done.
| |
204 'ime/chromeos/composition_text_unittest.cc', | |
205 'ime/chromeos/extension_ime_util_unittest.cc', | |
206 'ime/chromeos/ime_keyboard_x11_unittest.cc', | |
204 '../chromeos/ime/candidate_view_unittest.cc', | 207 '../chromeos/ime/candidate_view_unittest.cc', |
205 '../chromeos/ime/candidate_window_view_unittest.cc', | 208 '../chromeos/ime/candidate_window_view_unittest.cc', |
206 '../chromeos/ime/input_method_menu_item_unittest.cc', | 209 '../chromeos/ime/input_method_menu_item_unittest.cc', |
207 '../chromeos/ime/input_method_menu_manager_unittest.cc', | 210 '../chromeos/ime/input_method_menu_manager_unittest.cc', |
208 '../chromeos/network/network_state_notifier_unittest.cc', | 211 '../chromeos/network/network_state_notifier_unittest.cc', |
209 '../chromeos/touch_exploration_controller_unittest.cc', | 212 '../chromeos/touch_exploration_controller_unittest.cc', |
210 ], | 213 ], |
211 'sources!': [ | 214 'sources!': [ |
212 'dragdrop/os_exchange_data_provider_aurax11_unittest.cc', | 215 'dragdrop/os_exchange_data_provider_aurax11_unittest.cc', |
213 'x/selection_requestor_unittest.cc', | 216 'x/selection_requestor_unittest.cc', |
(...skipping 10 matching lines...) Expand all Loading... | |
224 'target_conditions': [ | 227 'target_conditions': [ |
225 ['OS == "ios"', { | 228 ['OS == "ios"', { |
226 'sources/': [ | 229 'sources/': [ |
227 # Pull in specific Mac files for iOS (which have been filtered out | 230 # Pull in specific Mac files for iOS (which have been filtered out |
228 # by file name rules). | 231 # by file name rules). |
229 ['include', '^l10n/l10n_util_mac_unittest\\.mm$'], | 232 ['include', '^l10n/l10n_util_mac_unittest\\.mm$'], |
230 ], | 233 ], |
231 }], | 234 }], |
232 ], | 235 ], |
233 } | 236 } |
OLD | NEW |