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 2421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2432 "*/NativeLibraries.class", | 2432 "*/NativeLibraries.class", |
2433 "*/NativeLibraries##*.class", | 2433 "*/NativeLibraries##*.class", |
2434 ] | 2434 ] |
2435 } | 2435 } |
2436 | 2436 |
2437 android_library("base_javatests") { | 2437 android_library("base_javatests") { |
2438 testonly = true | 2438 testonly = true |
2439 deps = [ | 2439 deps = [ |
2440 ":base_java", | 2440 ":base_java", |
2441 ":base_java_test_support", | 2441 ":base_java_test_support", |
| 2442 "//third_party/android_support_test_runner:runner_java", |
2442 ] | 2443 ] |
2443 java_files = [ | 2444 java_files = [ |
2444 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java", | 2445 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java", |
2445 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java", | 2446 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java", |
2446 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java", | 2447 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java", |
2447 "android/javatests/src/org/chromium/base/CommandLineTest.java", | 2448 "android/javatests/src/org/chromium/base/CommandLineTest.java", |
2448 | 2449 |
2449 # TODO(nona): move to Junit once that is built for Android N. | 2450 # TODO(nona): move to Junit once that is built for Android N. |
2450 "android/javatests/src/org/chromium/base/LocaleUtilsTest.java", | 2451 "android/javatests/src/org/chromium/base/LocaleUtilsTest.java", |
2451 "android/javatests/src/org/chromium/base/ObserverListTest.java", | 2452 "android/javatests/src/org/chromium/base/ObserverListTest.java", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2563 } | 2564 } |
2564 | 2565 |
2565 fuzzer_test("base_json_correctness_fuzzer") { | 2566 fuzzer_test("base_json_correctness_fuzzer") { |
2566 sources = [ | 2567 sources = [ |
2567 "json/correctness_fuzzer.cc", | 2568 "json/correctness_fuzzer.cc", |
2568 ] | 2569 ] |
2569 deps = [ | 2570 deps = [ |
2570 ":base", | 2571 ":base", |
2571 ] | 2572 ] |
2572 } | 2573 } |
OLD | NEW |