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 1714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |