| 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 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 ], | 335 ], |
| 336 'sources!': [ | 336 'sources!': [ |
| 337 'debug/trace_event_win_unittest.cc', | 337 'debug/trace_event_win_unittest.cc', |
| 338 'time_win_unittest.cc', | 338 'time_win_unittest.cc', |
| 339 'win/win_util_unittest.cc', | 339 'win/win_util_unittest.cc', |
| 340 ], | 340 ], |
| 341 }], | 341 }], |
| 342 ], | 342 ], |
| 343 }, | 343 }, |
| 344 { | 344 { |
| 345 'target_name': 'check_example', |
| 346 'type': 'executable', |
| 347 'sources': [ |
| 348 'check_example.cc', |
| 349 ], |
| 350 'dependencies': [ |
| 351 'base', |
| 352 ], |
| 353 }, |
| 354 { |
| 345 'target_name': 'test_support_base', | 355 'target_name': 'test_support_base', |
| 346 'type': 'static_library', | 356 'type': 'static_library', |
| 347 'dependencies': [ | 357 'dependencies': [ |
| 348 'base', | 358 'base', |
| 349 'base_static', | 359 'base_static', |
| 350 'base_i18n', | 360 'base_i18n', |
| 351 '../testing/gmock.gyp:gmock', | 361 '../testing/gmock.gyp:gmock', |
| 352 '../testing/gtest.gyp:gtest', | 362 '../testing/gtest.gyp:gtest', |
| 353 ], | 363 ], |
| 354 'export_dependent_settings': [ | 364 'export_dependent_settings': [ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 'msvs_settings': { | 456 'msvs_settings': { |
| 447 'VCLinkerTool': { | 457 'VCLinkerTool': { |
| 448 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 458 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 449 }, | 459 }, |
| 450 }, | 460 }, |
| 451 }, | 461 }, |
| 452 ], | 462 ], |
| 453 }], | 463 }], |
| 454 ], | 464 ], |
| 455 } | 465 } |
| OLD | NEW |