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

Side by Side Diff: base/BUILD.gn

Issue 2785133002: Reproduction for a bug when a test target depends on another test target
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 test("base_perftests") { 1739 test("base_perftests") {
1740 sources = [ 1740 sources = [
1741 "message_loop/message_pump_perftest.cc", 1741 "message_loop/message_pump_perftest.cc",
1742 1742
1743 # "test/run_all_unittests.cc", 1743 # "test/run_all_unittests.cc",
1744 "json/json_perftest.cc", 1744 "json/json_perftest.cc",
1745 "threading/thread_perftest.cc", 1745 "threading/thread_perftest.cc",
1746 ] 1746 ]
1747 deps = [ 1747 deps = [
1748 ":base", 1748 ":base",
1749 ":base_unittests",
1749 "//base/test:test_support", 1750 "//base/test:test_support",
1750 "//base/test:test_support_perf", 1751 "//base/test:test_support_perf",
1751 "//testing/gtest", 1752 "//testing/gtest",
1752 "//testing/perf", 1753 "//testing/perf",
1753 ] 1754 ]
1754 1755
1755 if (is_android) { 1756 if (is_android) {
1756 deps += [ "//testing/android/native_test:native_test_native_code" ] 1757 deps += [ "//testing/android/native_test:native_test_native_code" ]
1757 } 1758 }
1758 } 1759 }
(...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after
2685 } 2686 }
2686 2687
2687 fuzzer_test("base_json_correctness_fuzzer") { 2688 fuzzer_test("base_json_correctness_fuzzer") {
2688 sources = [ 2689 sources = [
2689 "json/correctness_fuzzer.cc", 2690 "json/correctness_fuzzer.cc",
2690 ] 2691 ]
2691 deps = [ 2692 deps = [
2692 ":base", 2693 ":base",
2693 ] 2694 ]
2694 } 2695 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698