| 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 2520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2531 "*/NativeLibraries##*.class", | 2531 "*/NativeLibraries##*.class", |
| 2532 ] | 2532 ] |
| 2533 } | 2533 } |
| 2534 | 2534 |
| 2535 android_library("base_javatests") { | 2535 android_library("base_javatests") { |
| 2536 testonly = true | 2536 testonly = true |
| 2537 deps = [ | 2537 deps = [ |
| 2538 ":base_java", | 2538 ":base_java", |
| 2539 ":base_java_test_support", | 2539 ":base_java_test_support", |
| 2540 "//third_party/android_support_test_runner:runner_java", | 2540 "//third_party/android_support_test_runner:runner_java", |
| 2541 "//third_party/junit:junit", |
| 2541 ] | 2542 ] |
| 2542 java_files = [ | 2543 java_files = [ |
| 2543 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java", | 2544 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java", |
| 2544 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java", | 2545 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java", |
| 2545 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java", | 2546 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java", |
| 2546 "android/javatests/src/org/chromium/base/CommandLineTest.java", | 2547 "android/javatests/src/org/chromium/base/CommandLineTest.java", |
| 2547 | 2548 |
| 2548 # TODO(nona): move to Junit once that is built for Android N. | 2549 # TODO(nona): move to Junit once that is built for Android N. |
| 2549 "android/javatests/src/org/chromium/base/LocaleUtilsTest.java", | 2550 "android/javatests/src/org/chromium/base/LocaleUtilsTest.java", |
| 2550 "android/javatests/src/org/chromium/base/ObserverListTest.java", | 2551 "android/javatests/src/org/chromium/base/ObserverListTest.java", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2663 } | 2664 } |
| 2664 | 2665 |
| 2665 fuzzer_test("base_json_correctness_fuzzer") { | 2666 fuzzer_test("base_json_correctness_fuzzer") { |
| 2666 sources = [ | 2667 sources = [ |
| 2667 "json/correctness_fuzzer.cc", | 2668 "json/correctness_fuzzer.cc", |
| 2668 ] | 2669 ] |
| 2669 deps = [ | 2670 deps = [ |
| 2670 ":base", | 2671 ":base", |
| 2671 ] | 2672 ] |
| 2672 } | 2673 } |
| OLD | NEW |