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