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 '../../testing/android/java/src/org/chromium/testing/local', | |
16 ], | |
17 }, | |
18 'all_dependent_settings': { | |
19 'variables': { | |
20 'main_class': 'org.chromium.testing.local.JunitTestMain', | |
cjhopman
2014/09/22 23:52:47
Hm, I'm not sure I like that this is injected into
jbudorick
2014/09/23 01:00:19
Done.
| |
21 }, | |
22 }, | |
23 'includes': [ | |
24 '../../build/host_jar.gypi', | |
25 ], | |
26 }, | |
27 { | |
28 'target_name': 'junit_unit_tests', | |
29 'type': 'none', | |
30 'dependencies': [ | |
31 'junit_test_support', | |
32 ], | |
33 'variables': { | |
34 'src_paths': [ | |
35 '../../testing/android/javatests/src/org/chromium/testing/local', | |
36 ], | |
37 }, | |
38 'includes': [ | |
39 '../../build/host_jar.gypi', | |
40 ], | |
41 }, | |
42 ], | |
43 } | |
OLD | NEW |