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