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 2575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2586 } | 2586 } |
2587 | 2587 |
2588 android_library("base_java_test_support") { | 2588 android_library("base_java_test_support") { |
2589 testonly = true | 2589 testonly = true |
2590 deps = [ | 2590 deps = [ |
2591 ":base_java", | 2591 ":base_java", |
2592 "//testing/android/reporter:reporter_java", | 2592 "//testing/android/reporter:reporter_java", |
2593 "//third_party/android_support_test_runner:exposed_instrumentation_api_pub
lish_java", | 2593 "//third_party/android_support_test_runner:exposed_instrumentation_api_pub
lish_java", |
2594 "//third_party/android_support_test_runner:runner_java", | 2594 "//third_party/android_support_test_runner:runner_java", |
2595 "//third_party/android_tools:android_support_chromium_java", | 2595 "//third_party/android_tools:android_support_chromium_java", |
2596 "//third_party/android_tools:android_support_v4_java", | |
2597 "//third_party/hamcrest:hamcrest_core_java", | 2596 "//third_party/hamcrest:hamcrest_core_java", |
2598 "//third_party/junit", | 2597 "//third_party/junit", |
2599 ] | 2598 ] |
2600 java_files = [ | 2599 java_files = [ |
2601 "test/android/javatests/src/org/chromium/base/test/BaseActivityInstrumenta
tionTestCase.java", | 2600 "test/android/javatests/src/org/chromium/base/test/BaseActivityInstrumenta
tionTestCase.java", |
2602 "test/android/javatests/src/org/chromium/base/test/BaseChromiumInstrumenta
tionTestRunner.java", | 2601 "test/android/javatests/src/org/chromium/base/test/BaseChromiumInstrumenta
tionTestRunner.java", |
2603 "test/android/javatests/src/org/chromium/base/test/BaseInstrumentationTest
Runner.java", | 2602 "test/android/javatests/src/org/chromium/base/test/BaseInstrumentationTest
Runner.java", |
2604 "test/android/javatests/src/org/chromium/base/test/BaseJUnit4ClassRunner.j
ava", | 2603 "test/android/javatests/src/org/chromium/base/test/BaseJUnit4ClassRunner.j
ava", |
2605 "test/android/javatests/src/org/chromium/base/test/BaseChromiumAndroidJUni
tRunner.java", | 2604 "test/android/javatests/src/org/chromium/base/test/BaseChromiumAndroidJUni
tRunner.java", |
2606 "test/android/javatests/src/org/chromium/base/test/BaseChromiumRunnerCommo
n.java", | 2605 "test/android/javatests/src/org/chromium/base/test/BaseChromiumRunnerCommo
n.java", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2704 } | 2703 } |
2705 | 2704 |
2706 fuzzer_test("base_json_correctness_fuzzer") { | 2705 fuzzer_test("base_json_correctness_fuzzer") { |
2707 sources = [ | 2706 sources = [ |
2708 "json/correctness_fuzzer.cc", | 2707 "json/correctness_fuzzer.cc", |
2709 ] | 2708 ] |
2710 deps = [ | 2709 deps = [ |
2711 ":base", | 2710 ":base", |
2712 ] | 2711 ] |
2713 } | 2712 } |
OLD | NEW |