OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
6 # ====================================== | 6 # ====================================== |
7 # | 7 # |
8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
10 # it from the sources list in that case | 10 # it from the sources list in that case |
(...skipping 2578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2589 } | 2589 } |
2590 | 2590 |
2591 android_library("base_java_test_support") { | 2591 android_library("base_java_test_support") { |
2592 testonly = true | 2592 testonly = true |
2593 deps = [ | 2593 deps = [ |
2594 ":base_java", | 2594 ":base_java", |
2595 "//testing/android/reporter:reporter_java", | 2595 "//testing/android/reporter:reporter_java", |
2596 "//third_party/android_support_test_runner:exposed_instrumentation_api_pub
lish_java", | 2596 "//third_party/android_support_test_runner:exposed_instrumentation_api_pub
lish_java", |
2597 "//third_party/android_support_test_runner:runner_java", | 2597 "//third_party/android_support_test_runner:runner_java", |
2598 "//third_party/android_tools:android_support_chromium_java", | 2598 "//third_party/android_tools:android_support_chromium_java", |
| 2599 "//third_party/android_tools:android_support_compat_java", |
2599 "//third_party/hamcrest:hamcrest_core_java", | 2600 "//third_party/hamcrest:hamcrest_core_java", |
2600 "//third_party/junit", | 2601 "//third_party/junit", |
2601 ] | 2602 ] |
2602 java_files = [ | 2603 java_files = [ |
2603 "test/android/javatests/src/org/chromium/base/test/BaseActivityInstrumenta
tionTestCase.java", | 2604 "test/android/javatests/src/org/chromium/base/test/BaseActivityInstrumenta
tionTestCase.java", |
2604 "test/android/javatests/src/org/chromium/base/test/BaseChromiumInstrumenta
tionTestRunner.java", | 2605 "test/android/javatests/src/org/chromium/base/test/BaseChromiumInstrumenta
tionTestRunner.java", |
2605 "test/android/javatests/src/org/chromium/base/test/BaseInstrumentationTest
Runner.java", | 2606 "test/android/javatests/src/org/chromium/base/test/BaseInstrumentationTest
Runner.java", |
2606 "test/android/javatests/src/org/chromium/base/test/BaseJUnit4ClassRunner.j
ava", | 2607 "test/android/javatests/src/org/chromium/base/test/BaseJUnit4ClassRunner.j
ava", |
2607 "test/android/javatests/src/org/chromium/base/test/BaseChromiumAndroidJUni
tRunner.java", | 2608 "test/android/javatests/src/org/chromium/base/test/BaseChromiumAndroidJUni
tRunner.java", |
2608 "test/android/javatests/src/org/chromium/base/test/BaseChromiumRunnerCommo
n.java", | 2609 "test/android/javatests/src/org/chromium/base/test/BaseChromiumRunnerCommo
n.java", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2706 } | 2707 } |
2707 | 2708 |
2708 fuzzer_test("base_json_correctness_fuzzer") { | 2709 fuzzer_test("base_json_correctness_fuzzer") { |
2709 sources = [ | 2710 sources = [ |
2710 "json/correctness_fuzzer.cc", | 2711 "json/correctness_fuzzer.cc", |
2711 ] | 2712 ] |
2712 deps = [ | 2713 deps = [ |
2713 ":base", | 2714 ":base", |
2714 ] | 2715 ] |
2715 } | 2716 } |
OLD | NEW |