OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 1608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1619 }, | 1619 }, |
1620 'includes': [ '../build/apk_test.gypi' ], | 1620 'includes': [ '../build/apk_test.gypi' ], |
1621 }, | 1621 }, |
1622 { | 1622 { |
1623 'target_name': 'components_junit_tests', | 1623 'target_name': 'components_junit_tests', |
1624 'type': 'none', | 1624 'type': 'none', |
1625 'dependencies': [ | 1625 'dependencies': [ |
1626 'components.gyp:invalidation_java', | 1626 'components.gyp:invalidation_java', |
1627 'components.gyp:policy_java', | 1627 'components.gyp:policy_java', |
1628 'components.gyp:policy_java_test_support', | 1628 'components.gyp:policy_java_test_support', |
| 1629 'components.gyp:web_restriction_java', |
1629 '../base/base.gyp:base_java', | 1630 '../base/base.gyp:base_java', |
1630 '../base/base.gyp:base_java_test_support', | 1631 '../base/base.gyp:base_java_test_support', |
1631 '../testing/android/junit/junit_test.gyp:junit_test_support', | 1632 '../testing/android/junit/junit_test.gyp:junit_test_support', |
1632 ], | 1633 ], |
1633 'variables': { | 1634 'variables': { |
1634 'main_class': 'org.chromium.testing.local.JunitTestMain', | 1635 'main_class': 'org.chromium.testing.local.JunitTestMain', |
1635 'src_paths': [ | 1636 'src_paths': [ |
1636 'invalidation/impl/android/junit/', | 1637 'invalidation/impl/android/junit/', |
1637 'policy/android/junit/' | 1638 'policy/android/junit/', |
| 1639 'web_restriction/junit/' |
1638 ], | 1640 ], |
1639 }, | 1641 }, |
1640 'includes': [ '../build/host_jar.gypi' ], | 1642 'includes': [ '../build/host_jar.gypi' ], |
1641 }, | 1643 }, |
1642 ], | 1644 ], |
1643 'conditions': [ | 1645 'conditions': [ |
1644 ['test_isolation_mode != "noop"', | 1646 ['test_isolation_mode != "noop"', |
1645 { | 1647 { |
1646 'targets': [ | 1648 'targets': [ |
1647 { | 1649 { |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1872 'dependencies': [ | 1874 'dependencies': [ |
1873 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1875 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
1874 ], | 1876 ], |
1875 }], | 1877 }], |
1876 ], | 1878 ], |
1877 }, | 1879 }, |
1878 ], | 1880 ], |
1879 }], | 1881 }], |
1880 ], | 1882 ], |
1881 } | 1883 } |
OLD | NEW |