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

Side by Side Diff: base/BUILD.gn

Issue 2523983002: Create CommandLineTestRule (Closed)
Patch Set: Created 4 years, 1 month 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 2431 matching lines...) Expand 10 before | Expand all | Expand 10 after
2442 "test/android/javatests/src/org/chromium/base/test/util/parameter/paramete rs/MethodParameter.java", 2442 "test/android/javatests/src/org/chromium/base/test/util/parameter/paramete rs/MethodParameter.java",
2443 ] 2443 ]
2444 } 2444 }
2445 2445
2446 junit_binary("base_junit_tests") { 2446 junit_binary("base_junit_tests") {
2447 java_files = [ 2447 java_files = [
2448 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java", 2448 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java",
2449 "android/junit/src/org/chromium/base/LogTest.java", 2449 "android/junit/src/org/chromium/base/LogTest.java",
2450 "android/junit/src/org/chromium/base/NonThreadSafeTest.java", 2450 "android/junit/src/org/chromium/base/NonThreadSafeTest.java",
2451 "android/junit/src/org/chromium/base/PromiseTest.java", 2451 "android/junit/src/org/chromium/base/PromiseTest.java",
2452 "test/android/junit/src/org/chromium/base/test/CommandLineFlagsTest.java",
2452 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java", 2453 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java",
2453 "test/android/junit/src/org/chromium/base/test/util/MinAndroidSdkLevelSkip CheckTest.java", 2454 "test/android/junit/src/org/chromium/base/test/util/MinAndroidSdkLevelSkip CheckTest.java",
2454 "test/android/junit/src/org/chromium/base/test/util/RestrictionSkipCheckTe st.java", 2455 "test/android/junit/src/org/chromium/base/test/util/RestrictionSkipCheckTe st.java",
2455 "test/android/junit/src/org/chromium/base/test/util/SkipCheckTest.java", 2456 "test/android/junit/src/org/chromium/base/test/util/SkipCheckTest.java",
2456 ] 2457 ]
2457 deps = [ 2458 deps = [
2458 ":base_java", 2459 ":base_java",
2459 ":base_java_test_support", 2460 ":base_java_test_support",
2460 ] 2461 ]
2461 srcjar_deps = [ ":base_build_config_gen" ] 2462 srcjar_deps = [ ":base_build_config_gen" ]
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
2502 } 2503 }
2503 2504
2504 fuzzer_test("base_json_correctness_fuzzer") { 2505 fuzzer_test("base_json_correctness_fuzzer") {
2505 sources = [ 2506 sources = [
2506 "json/correctness_fuzzer.cc", 2507 "json/correctness_fuzzer.cc",
2507 ] 2508 ]
2508 deps = [ 2509 deps = [
2509 ":base", 2510 ":base",
2510 ] 2511 ]
2511 } 2512 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698