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

Side by Side Diff: base/BUILD.gn

Issue 2865653003: One perf test for windows VirtualQueryEx calls.
Patch Set: add many test cases Created 3 years, 7 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/memory/i_heart_windows_memory.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 1726 matching lines...) Expand 10 before | Expand all | Expand 10 after
1737 libs = [ "CoreFoundation.framework" ] 1737 libs = [ "CoreFoundation.framework" ]
1738 } 1738 }
1739 } 1739 }
1740 1740
1741 test("base_perftests") { 1741 test("base_perftests") {
1742 sources = [ 1742 sources = [
1743 "message_loop/message_pump_perftest.cc", 1743 "message_loop/message_pump_perftest.cc",
1744 1744
1745 # "test/run_all_unittests.cc", 1745 # "test/run_all_unittests.cc",
1746 "json/json_perftest.cc", 1746 "json/json_perftest.cc",
1747 "memory/memory_uma_perftest.cc",
1747 "threading/thread_perftest.cc", 1748 "threading/thread_perftest.cc",
1748 ] 1749 ]
1749 deps = [ 1750 deps = [
1750 ":base", 1751 ":base",
1751 "//base/test:test_support", 1752 "//base/test:test_support",
1752 "//base/test:test_support_perf", 1753 "//base/test:test_support_perf",
1753 "//testing/gtest", 1754 "//testing/gtest",
1754 "//testing/perf", 1755 "//testing/perf",
1755 ] 1756 ]
1756 1757
(...skipping 950 matching lines...) Expand 10 before | Expand all | Expand 10 after
2707 } 2708 }
2708 2709
2709 fuzzer_test("base_json_correctness_fuzzer") { 2710 fuzzer_test("base_json_correctness_fuzzer") {
2710 sources = [ 2711 sources = [
2711 "json/correctness_fuzzer.cc", 2712 "json/correctness_fuzzer.cc",
2712 ] 2713 ]
2713 deps = [ 2714 deps = [
2714 ":base", 2715 ":base",
2715 ] 2716 ]
2716 } 2717 }
2718
2719 executable("i_heart_windows_memory") {
2720 sources = [
2721 "memory/i_heart_windows_memory.cc",
2722 ]
2723 deps = [
2724 ":base",
2725 ]
2726 }
OLDNEW
« no previous file with comments | « no previous file | base/memory/i_heart_windows_memory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698