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 2516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2527 "test/android/javatests/src/org/chromium/base/test/util/parameter/paramete
rs/MethodParameter.java", | 2527 "test/android/javatests/src/org/chromium/base/test/util/parameter/paramete
rs/MethodParameter.java", |
2528 ] | 2528 ] |
2529 } | 2529 } |
2530 | 2530 |
2531 junit_binary("base_junit_tests") { | 2531 junit_binary("base_junit_tests") { |
2532 java_files = [ | 2532 java_files = [ |
2533 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java", | 2533 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java", |
2534 "android/junit/src/org/chromium/base/LogTest.java", | 2534 "android/junit/src/org/chromium/base/LogTest.java", |
2535 "android/junit/src/org/chromium/base/NonThreadSafeTest.java", | 2535 "android/junit/src/org/chromium/base/NonThreadSafeTest.java", |
2536 "android/junit/src/org/chromium/base/PromiseTest.java", | 2536 "android/junit/src/org/chromium/base/PromiseTest.java", |
| 2537 "test/android/junit/src/org/chromium/base/test/CommandLineFlagsTest.java", |
2537 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java", | 2538 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java", |
2538 "test/android/junit/src/org/chromium/base/test/util/MinAndroidSdkLevelSkip
CheckTest.java", | 2539 "test/android/junit/src/org/chromium/base/test/util/MinAndroidSdkLevelSkip
CheckTest.java", |
2539 "test/android/junit/src/org/chromium/base/test/util/RestrictionSkipCheckTe
st.java", | 2540 "test/android/junit/src/org/chromium/base/test/util/RestrictionSkipCheckTe
st.java", |
2540 "test/android/junit/src/org/chromium/base/test/util/SkipCheckTest.java", | 2541 "test/android/junit/src/org/chromium/base/test/util/SkipCheckTest.java", |
2541 ] | 2542 ] |
2542 deps = [ | 2543 deps = [ |
2543 ":base_java", | 2544 ":base_java", |
2544 ":base_java_test_support", | 2545 ":base_java_test_support", |
2545 ] | 2546 ] |
2546 srcjar_deps = [ ":base_build_config_gen" ] | 2547 srcjar_deps = [ ":base_build_config_gen" ] |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2587 } | 2588 } |
2588 | 2589 |
2589 fuzzer_test("base_json_correctness_fuzzer") { | 2590 fuzzer_test("base_json_correctness_fuzzer") { |
2590 sources = [ | 2591 sources = [ |
2591 "json/correctness_fuzzer.cc", | 2592 "json/correctness_fuzzer.cc", |
2592 ] | 2593 ] |
2593 deps = [ | 2594 deps = [ |
2594 ":base", | 2595 ":base", |
2595 ] | 2596 ] |
2596 } | 2597 } |
OLD | NEW |