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 'includes': [ | 9 'includes': [ |
10 'base.gypi', | 10 'base.gypi', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 'memory/mru_cache_unittest.cc', | 146 'memory/mru_cache_unittest.cc', |
147 'memory/ref_counted_unittest.cc', | 147 'memory/ref_counted_unittest.cc', |
148 'memory/scoped_ptr_unittest.cc', | 148 'memory/scoped_ptr_unittest.cc', |
149 'memory/scoped_vector_unittest.cc', | 149 'memory/scoped_vector_unittest.cc', |
150 'memory/singleton_unittest.cc', | 150 'memory/singleton_unittest.cc', |
151 'memory/weak_ptr_unittest.cc', | 151 'memory/weak_ptr_unittest.cc', |
152 'message_loop_proxy_impl_unittest.cc', | 152 'message_loop_proxy_impl_unittest.cc', |
153 'message_loop_unittest.cc', | 153 'message_loop_unittest.cc', |
154 'message_pump_glib_unittest.cc', | 154 'message_pump_glib_unittest.cc', |
155 'message_pump_libevent_unittest.cc', | 155 'message_pump_libevent_unittest.cc', |
| 156 'message_pump_mac_unittest.cc', |
156 'metrics/field_trial_unittest.cc', | 157 'metrics/field_trial_unittest.cc', |
157 'metrics/histogram_unittest.cc', | 158 'metrics/histogram_unittest.cc', |
158 'metrics/stats_table_unittest.cc', | 159 'metrics/stats_table_unittest.cc', |
159 'observer_list_unittest.cc', | 160 'observer_list_unittest.cc', |
160 'path_service_unittest.cc', | 161 'path_service_unittest.cc', |
161 'pickle_unittest.cc', | 162 'pickle_unittest.cc', |
162 'platform_file_unittest.cc', | 163 'platform_file_unittest.cc', |
163 'pr_time_unittest.cc', | 164 'pr_time_unittest.cc', |
164 'process_util_unittest.cc', | 165 'process_util_unittest.cc', |
165 'process_util_unittest_mac.h', | 166 'process_util_unittest_mac.h', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 }, { # OS != "win" | 285 }, { # OS != "win" |
285 'sources/': [ | 286 'sources/': [ |
286 ['exclude', '^win/'], | 287 ['exclude', '^win/'], |
287 ], | 288 ], |
288 'sources!': [ | 289 'sources!': [ |
289 'debug/trace_event_win_unittest.cc', | 290 'debug/trace_event_win_unittest.cc', |
290 'time_win_unittest.cc', | 291 'time_win_unittest.cc', |
291 'win/win_util_unittest.cc', | 292 'win/win_util_unittest.cc', |
292 ], | 293 ], |
293 }], | 294 }], |
| 295 ['OS == "mac"', { |
| 296 'sources!': [ |
| 297 'message_pump_libevent_unittest.cc', |
| 298 ], |
| 299 }, { # OS != "mac" |
| 300 'sources!': [ |
| 301 'message_pump_mac_unittest.cc', |
| 302 ], |
| 303 }], |
294 ], | 304 ], |
295 }, | 305 }, |
296 { | 306 { |
297 'target_name': 'test_support_base', | 307 'target_name': 'test_support_base', |
298 'type': 'static_library', | 308 'type': 'static_library', |
299 'dependencies': [ | 309 'dependencies': [ |
300 'base', | 310 'base', |
301 'base_static', | 311 'base_static', |
302 'base_i18n', | 312 'base_i18n', |
303 '../testing/gmock.gyp:gmock', | 313 '../testing/gmock.gyp:gmock', |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 ], | 404 ], |
395 }], | 405 }], |
396 ], | 406 ], |
397 } | 407 } |
398 | 408 |
399 # Local Variables: | 409 # Local Variables: |
400 # tab-width:2 | 410 # tab-width:2 |
401 # indent-tabs-mode:nil | 411 # indent-tabs-mode:nil |
402 # End: | 412 # End: |
403 # vim: set expandtab tabstop=2 shiftwidth=2: | 413 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |