Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Side by Side Diff: base/base.gyp

Issue 1353033003: Isolate base_unittests_apk. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/base_unittests_apk.isolate » ('j') | base/base_unittests_apk.isolate » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | base/base_unittests_apk.isolate » ('j') | base/base_unittests_apk.isolate » ('J')

Powered by Google App Engine
This is Rietveld 408576698