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 2660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2671 package_name = "org/chromium/base/library_loader" | 2671 package_name = "org/chromium/base/library_loader" |
2672 } | 2672 } |
2673 | 2673 |
2674 android_library("base_java_unittest_support") { | 2674 android_library("base_java_unittest_support") { |
2675 testonly = true | 2675 testonly = true |
2676 deps = [ | 2676 deps = [ |
2677 ":base_java", | 2677 ":base_java", |
2678 ] | 2678 ] |
2679 java_files = [ | 2679 java_files = [ |
2680 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2680 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2681 "test/android/java/src/org/chromium/base/JavaHandlerThreadTest.java", |
2681 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2682 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
2682 ] | 2683 ] |
2683 } | 2684 } |
2684 } | 2685 } |
2685 | 2686 |
2686 fuzzer_test("base_json_correctness_fuzzer") { | 2687 fuzzer_test("base_json_correctness_fuzzer") { |
2687 sources = [ | 2688 sources = [ |
2688 "json/correctness_fuzzer.cc", | 2689 "json/correctness_fuzzer.cc", |
2689 ] | 2690 ] |
2690 deps = [ | 2691 deps = [ |
2691 ":base", | 2692 ":base", |
2692 ] | 2693 ] |
2693 } | 2694 } |
OLD | NEW |