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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 'scoped_bstr_win_unittest.cc', | 550 'scoped_bstr_win_unittest.cc', |
551 'scoped_comptr_win_unittest.cc', | 551 'scoped_comptr_win_unittest.cc', |
552 'system_monitor_unittest.cc', | 552 'system_monitor_unittest.cc', |
553 'time_win_unittest.cc', | 553 'time_win_unittest.cc', |
554 'win_util_unittest.cc', | 554 'win_util_unittest.cc', |
555 'wmi_util_unittest.cc', | 555 'wmi_util_unittest.cc', |
556 ], | 556 ], |
557 }], | 557 }], |
558 ], | 558 ], |
559 }, | 559 }, |
| 560 { |
| 561 'target_name': 'test_support_base', |
| 562 'type': 'static_library', |
| 563 'dependencies': [ |
| 564 'base', |
| 565 '../testing/gtest.gyp:gtest', |
| 566 ], |
| 567 'sources': [ |
| 568 'perftimer.cc', |
| 569 'run_all_perftests.cc', |
| 570 ], |
| 571 'direct_dependent_settings': { |
| 572 'defines': [ |
| 573 'PERF_TEST', |
| 574 ], |
| 575 }, |
| 576 }, |
560 ], | 577 ], |
561 'conditions': [ | 578 'conditions': [ |
562 [ 'OS == "win"', { | 579 [ 'OS == "win"', { |
563 'targets': [ | 580 'targets': [ |
564 { | 581 { |
565 'target_name': 'debug_message', | 582 'target_name': 'debug_message', |
566 'type': 'executable', | 583 'type': 'executable', |
567 'sources': [ | 584 'sources': [ |
568 'debug_message.cc', | 585 'debug_message.cc', |
569 ], | 586 ], |
570 }, | 587 }, |
571 ], | 588 ], |
572 }], | 589 }], |
573 ], | 590 ], |
574 } | 591 } |
OLD | NEW |