Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: base/BUILD.gn

Issue 2523983002: Create CommandLineTestRule (Closed)
Patch Set: change based on comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698