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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 'dependencies': [ | 276 'dependencies': [ |
277 '../third_party/icu/icu.gyp:icudata', | 277 '../third_party/icu/icu.gyp:icudata', |
278 ], | 278 ], |
279 'sources!': [ | 279 'sources!': [ |
280 'dir_reader_posix_unittest.cc', | 280 'dir_reader_posix_unittest.cc', |
281 'file_descriptor_shuffle_unittest.cc', | 281 'file_descriptor_shuffle_unittest.cc', |
282 'threading/worker_pool_posix_unittest.cc', | 282 'threading/worker_pool_posix_unittest.cc', |
283 'message_pump_libevent_unittest.cc', | 283 'message_pump_libevent_unittest.cc', |
284 ], | 284 ], |
285 }, { # OS != "win" | 285 }, { # OS != "win" |
| 286 'dependencies': [ |
| 287 '../third_party/libevent/libevent.gyp:libevent' |
| 288 ], |
286 'sources/': [ | 289 'sources/': [ |
287 ['exclude', '^win/'], | 290 ['exclude', '^win/'], |
288 ], | 291 ], |
289 'sources!': [ | 292 'sources!': [ |
290 'debug/trace_event_win_unittest.cc', | 293 'debug/trace_event_win_unittest.cc', |
291 'time_win_unittest.cc', | 294 'time_win_unittest.cc', |
292 'win/win_util_unittest.cc', | 295 'win/win_util_unittest.cc', |
293 ], | 296 ], |
294 }], | 297 }], |
295 ], | 298 ], |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 'msvs_settings': { | 392 'msvs_settings': { |
390 'VCLinkerTool': { | 393 'VCLinkerTool': { |
391 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 394 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
392 }, | 395 }, |
393 }, | 396 }, |
394 }, | 397 }, |
395 ], | 398 ], |
396 }], | 399 }], |
397 ], | 400 ], |
398 } | 401 } |
OLD | NEW |