OLD | NEW |
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 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1744 if (is_mac) { | 1744 if (is_mac) { |
1745 libs = [ "CoreFoundation.framework" ] | 1745 libs = [ "CoreFoundation.framework" ] |
1746 } | 1746 } |
1747 } | 1747 } |
1748 | 1748 |
1749 test("base_perftests") { | 1749 test("base_perftests") { |
1750 sources = [ | 1750 sources = [ |
1751 "message_loop/message_pump_perftest.cc", | 1751 "message_loop/message_pump_perftest.cc", |
1752 | 1752 |
1753 # "test/run_all_unittests.cc", | 1753 # "test/run_all_unittests.cc", |
| 1754 "containers/flat_set_perftest.cc", |
1754 "json/json_perftest.cc", | 1755 "json/json_perftest.cc", |
1755 "threading/thread_perftest.cc", | 1756 "threading/thread_perftest.cc", |
1756 ] | 1757 ] |
1757 deps = [ | 1758 deps = [ |
1758 ":base", | 1759 ":base", |
1759 "//base/test:test_support", | 1760 "//base/test:test_support", |
1760 "//base/test:test_support_perf", | 1761 "//base/test:test_support_perf", |
1761 "//testing/gtest", | 1762 "//testing/gtest", |
1762 "//testing/perf", | 1763 "//testing/perf", |
1763 ] | 1764 ] |
(...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2721 } | 2722 } |
2722 | 2723 |
2723 fuzzer_test("base_json_correctness_fuzzer") { | 2724 fuzzer_test("base_json_correctness_fuzzer") { |
2724 sources = [ | 2725 sources = [ |
2725 "json/correctness_fuzzer.cc", | 2726 "json/correctness_fuzzer.cc", |
2726 ] | 2727 ] |
2727 deps = [ | 2728 deps = [ |
2728 ":base", | 2729 ":base", |
2729 ] | 2730 ] |
2730 } | 2731 } |
OLD | NEW |