| 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 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1604 'base_java', | 1604 'base_java', |
| 1605 'base_unittests', | 1605 'base_unittests', |
| 1606 ], | 1606 ], |
| 1607 'variables': { | 1607 'variables': { |
| 1608 'test_suite_name': 'base_unittests', | 1608 'test_suite_name': 'base_unittests', |
| 1609 'isolate_file': 'base_unittests.isolate', | 1609 'isolate_file': 'base_unittests.isolate', |
| 1610 }, | 1610 }, |
| 1611 'includes': [ '../build/apk_test.gypi' ], | 1611 'includes': [ '../build/apk_test.gypi' ], |
| 1612 }, | 1612 }, |
| 1613 ], | 1613 ], |
| 1614 'conditions': [ |
| 1615 ['test_isolation_mode != "noop"', |
| 1616 { |
| 1617 'targets': [ |
| 1618 { |
| 1619 'target_name': 'base_unittests_apk_run', |
| 1620 'type': 'none', |
| 1621 'dependencies': [ |
| 1622 'base_unittests_apk', |
| 1623 ], |
| 1624 'includes': [ |
| 1625 '../build/isolate.gypi', |
| 1626 ], |
| 1627 'sources': [ |
| 1628 'base_unittests_apk.isolate', |
| 1629 ], |
| 1630 }, |
| 1631 ] |
| 1632 } |
| 1633 ], |
| 1634 ], |
| 1614 }], | 1635 }], |
| 1615 ['OS == "win"', { | 1636 ['OS == "win"', { |
| 1616 'targets': [ | 1637 'targets': [ |
| 1617 { | 1638 { |
| 1618 'target_name': 'debug_message', | 1639 'target_name': 'debug_message', |
| 1619 'type': 'executable', | 1640 'type': 'executable', |
| 1620 'sources': [ | 1641 'sources': [ |
| 1621 'debug_message.cc', | 1642 'debug_message.cc', |
| 1622 ], | 1643 ], |
| 1623 'msvs_settings': { | 1644 'msvs_settings': { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1662 '../build/isolate.gypi', | 1683 '../build/isolate.gypi', |
| 1663 ], | 1684 ], |
| 1664 'sources': [ | 1685 'sources': [ |
| 1665 'base_unittests.isolate', | 1686 'base_unittests.isolate', |
| 1666 ], | 1687 ], |
| 1667 }, | 1688 }, |
| 1668 ], | 1689 ], |
| 1669 }], | 1690 }], |
| 1670 ], | 1691 ], |
| 1671 } | 1692 } |
| OLD | NEW |