Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
|
nyquist
2014/09/19 01:26:04
Remove (c)
jbudorick
2014/09/19 20:09:08
Done.
| |
| 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': [ '../../testing/android/java' ], | |
| 15 'excluded_src_paths': [ | |
| 16 '../../testing/android/java/src/org/chromium/native_test' | |
| 17 ], | |
| 18 }, | |
| 19 'all_dependent_settings': { | |
| 20 'variables': { | |
| 21 'main_class': 'org.chromium.testing.local.JunitTestMain', | |
| 22 }, | |
| 23 }, | |
| 24 'includes': [ | |
| 25 '../../build/host_jar.gypi', | |
| 26 ], | |
| 27 }, | |
| 28 ] | |
| 29 } | |
| OLD | NEW |