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

Side by Side Diff: base/BUILD.gn

Issue 2745733005: Base Perftest
Patch Set: Created 3 years, 9 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 | base/value_perftest.cc » ('j') | 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 1714 matching lines...) Expand 10 before | Expand all | Expand 10 after
1725 } 1725 }
1726 } 1726 }
1727 1727
1728 test("base_perftests") { 1728 test("base_perftests") {
1729 sources = [ 1729 sources = [
1730 "message_loop/message_pump_perftest.cc", 1730 "message_loop/message_pump_perftest.cc",
1731 1731
1732 # "test/run_all_unittests.cc", 1732 # "test/run_all_unittests.cc",
1733 "json/json_perftest.cc", 1733 "json/json_perftest.cc",
1734 "threading/thread_perftest.cc", 1734 "threading/thread_perftest.cc",
1735 "value_perftest.cc",
1735 ] 1736 ]
1736 deps = [ 1737 deps = [
1737 ":base", 1738 ":base",
1738 "//base/test:test_support", 1739 "//base/test:test_support",
1739 "//base/test:test_support_perf", 1740 "//base/test:test_support_perf",
1740 "//testing/gtest", 1741 "//testing/gtest",
1741 "//testing/perf", 1742 "//testing/perf",
1742 ] 1743 ]
1743 1744
1744 if (is_android) { 1745 if (is_android) {
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
2664 } 2665 }
2665 2666
2666 fuzzer_test("base_json_correctness_fuzzer") { 2667 fuzzer_test("base_json_correctness_fuzzer") {
2667 sources = [ 2668 sources = [
2668 "json/correctness_fuzzer.cc", 2669 "json/correctness_fuzzer.cc",
2669 ] 2670 ]
2670 deps = [ 2671 deps = [
2671 ":base", 2672 ":base",
2672 ] 2673 ]
2673 } 2674 }
OLDNEW
« no previous file with comments | « no previous file | base/value_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698