| 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 2566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2577 } | 2577 } |
| 2578 | 2578 |
| 2579 android_library("base_java_test_support") { | 2579 android_library("base_java_test_support") { |
| 2580 testonly = true | 2580 testonly = true |
| 2581 deps = [ | 2581 deps = [ |
| 2582 ":base_java", | 2582 ":base_java", |
| 2583 "//testing/android/reporter:reporter_java", | 2583 "//testing/android/reporter:reporter_java", |
| 2584 "//third_party/android_support_test_runner:exposed_instrumentation_api_pub
lish_java", | 2584 "//third_party/android_support_test_runner:exposed_instrumentation_api_pub
lish_java", |
| 2585 "//third_party/android_support_test_runner:runner_java", | 2585 "//third_party/android_support_test_runner:runner_java", |
| 2586 "//third_party/android_tools:android_support_chromium_java", | 2586 "//third_party/android_tools:android_support_chromium_java", |
| 2587 "//third_party/android_tools:android_support_compat_java", |
| 2587 "//third_party/hamcrest:hamcrest_core_java", | 2588 "//third_party/hamcrest:hamcrest_core_java", |
| 2588 "//third_party/junit", | 2589 "//third_party/junit", |
| 2589 ] | 2590 ] |
| 2590 java_files = [ | 2591 java_files = [ |
| 2591 "test/android/javatests/src/org/chromium/base/test/BaseActivityInstrumenta
tionTestCase.java", | 2592 "test/android/javatests/src/org/chromium/base/test/BaseActivityInstrumenta
tionTestCase.java", |
| 2592 "test/android/javatests/src/org/chromium/base/test/BaseChromiumInstrumenta
tionTestRunner.java", | 2593 "test/android/javatests/src/org/chromium/base/test/BaseChromiumInstrumenta
tionTestRunner.java", |
| 2593 "test/android/javatests/src/org/chromium/base/test/BaseInstrumentationTest
Runner.java", | 2594 "test/android/javatests/src/org/chromium/base/test/BaseInstrumentationTest
Runner.java", |
| 2594 "test/android/javatests/src/org/chromium/base/test/BaseJUnit4ClassRunner.j
ava", | 2595 "test/android/javatests/src/org/chromium/base/test/BaseJUnit4ClassRunner.j
ava", |
| 2595 "test/android/javatests/src/org/chromium/base/test/BaseChromiumAndroidJUni
tRunner.java", | 2596 "test/android/javatests/src/org/chromium/base/test/BaseChromiumAndroidJUni
tRunner.java", |
| 2596 "test/android/javatests/src/org/chromium/base/test/BaseChromiumRunnerCommo
n.java", | 2597 "test/android/javatests/src/org/chromium/base/test/BaseChromiumRunnerCommo
n.java", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2690 } | 2691 } |
| 2691 | 2692 |
| 2692 fuzzer_test("base_json_correctness_fuzzer") { | 2693 fuzzer_test("base_json_correctness_fuzzer") { |
| 2693 sources = [ | 2694 sources = [ |
| 2694 "json/correctness_fuzzer.cc", | 2695 "json/correctness_fuzzer.cc", |
| 2695 ] | 2696 ] |
| 2696 deps = [ | 2697 deps = [ |
| 2697 ":base", | 2698 ":base", |
| 2698 ] | 2699 ] |
| 2699 } | 2700 } |
| OLD | NEW |