| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 1598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1609 'base_java', | 1609 'base_java', |
| 1610 'base_unittests', | 1610 'base_unittests', |
| 1611 ], | 1611 ], |
| 1612 'variables': { | 1612 'variables': { |
| 1613 'test_suite_name': 'base_unittests', | 1613 'test_suite_name': 'base_unittests', |
| 1614 'isolate_file': 'base_unittests.isolate', | 1614 'isolate_file': 'base_unittests.isolate', |
| 1615 }, | 1615 }, |
| 1616 'includes': [ '../build/apk_test.gypi' ], | 1616 'includes': [ '../build/apk_test.gypi' ], |
| 1617 }, | 1617 }, |
| 1618 ], | 1618 ], |
| 1619 'conditions': [ |
| 1620 ['test_isolation_mode != "noop"', |
| 1621 { |
| 1622 'targets': [ |
| 1623 { |
| 1624 'target_name': 'base_unittests_apk_run', |
| 1625 'type': 'none', |
| 1626 'dependencies': [ |
| 1627 'base_unittests_apk', |
| 1628 ], |
| 1629 'includes': [ |
| 1630 '../build/isolate.gypi', |
| 1631 ], |
| 1632 'sources': [ |
| 1633 'base_unittests_apk.isolate', |
| 1634 ], |
| 1635 }, |
| 1636 ] |
| 1637 } |
| 1638 ], |
| 1639 ], |
| 1619 }], | 1640 }], |
| 1620 ['OS == "win"', { | 1641 ['OS == "win"', { |
| 1621 'targets': [ | 1642 'targets': [ |
| 1622 { | 1643 { |
| 1623 'target_name': 'debug_message', | 1644 'target_name': 'debug_message', |
| 1624 'type': 'executable', | 1645 'type': 'executable', |
| 1625 'sources': [ | 1646 'sources': [ |
| 1626 'debug_message.cc', | 1647 'debug_message.cc', |
| 1627 ], | 1648 ], |
| 1628 'msvs_settings': { | 1649 'msvs_settings': { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1667 '../build/isolate.gypi', | 1688 '../build/isolate.gypi', |
| 1668 ], | 1689 ], |
| 1669 'sources': [ | 1690 'sources': [ |
| 1670 'base_unittests.isolate', | 1691 'base_unittests.isolate', |
| 1671 ], | 1692 ], |
| 1672 }, | 1693 }, |
| 1673 ], | 1694 ], |
| 1674 }], | 1695 }], |
| 1675 ], | 1696 ], |
| 1676 } | 1697 } |
| OLD | NEW |