OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 ], | 640 ], |
641 'conditions': [ | 641 'conditions': [ |
642 ['OS=="win"', { | 642 ['OS=="win"', { |
643 }], | 643 }], |
644 ['OS=="linux"', { | 644 ['OS=="linux"', { |
645 }], | 645 }], |
646 ['OS=="mac"', { | 646 ['OS=="mac"', { |
647 }] | 647 }] |
648 ], | 648 ], |
649 }, | 649 }, |
| 650 { |
| 651 'target_name': 'ppapi_unittests', |
| 652 'type': 'executable', |
| 653 'variables': { |
| 654 'chromium_code': 1, |
| 655 }, |
| 656 'msvs_guid': 'C2BD9365-5BD7-44A7-854E-A49E606BE8E4', |
| 657 'dependencies': [ |
| 658 'ppapi_proxy', |
| 659 '../base/base.gyp:test_support_base', |
| 660 '../ipc/ipc.gyp:test_support_ipc', |
| 661 '../testing/gmock.gyp:gmock', |
| 662 '../testing/gtest.gyp:gtest', |
| 663 ], |
| 664 'sources': [ |
| 665 'proxy/run_all_unittests.cc', |
| 666 |
| 667 'proxy/plugin_var_tracker_unittest.cc', |
| 668 ], |
| 669 }, |
650 ], | 670 ], |
651 } | 671 } |
OLD | NEW |