OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'junit_test_support', | |
9 'type': 'none', | |
10 'dependencies': [ | |
11 '../../../third_party/junit/junit.gyp:junit_jar', | |
12 ], | |
13 'variables': { | |
14 'src_paths': [ | |
15 'java/src', | |
16 ], | |
17 }, | |
18 'includes': [ | |
19 '../../../build/host_jar.gypi', | |
20 ], | |
21 }, | |
22 { | |
23 'target_name': 'junit_unit_tests', | |
24 'type': 'none', | |
25 'dependencies': [ | |
26 'junit_test_support', | |
27 ], | |
28 'variables': { | |
29 'main_class': 'org.chromium.testing.local.JunitTestMain', | |
30 'src_paths': [ | |
31 'javatests/src', | |
32 ], | |
33 }, | |
34 'includes': [ | |
35 '../../../build/host_jar.gypi', | |
36 ], | |
37 }, | |
38 ], | |
39 } | |
OLD | NEW |