| 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 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1739 test("base_perftests") { | 1739 test("base_perftests") { |
| 1740 sources = [ | 1740 sources = [ |
| 1741 "message_loop/message_pump_perftest.cc", | 1741 "message_loop/message_pump_perftest.cc", |
| 1742 | 1742 |
| 1743 # "test/run_all_unittests.cc", | 1743 # "test/run_all_unittests.cc", |
| 1744 "json/json_perftest.cc", | 1744 "json/json_perftest.cc", |
| 1745 "threading/thread_perftest.cc", | 1745 "threading/thread_perftest.cc", |
| 1746 ] | 1746 ] |
| 1747 deps = [ | 1747 deps = [ |
| 1748 ":base", | 1748 ":base", |
| 1749 ":base_unittests", |
| 1749 "//base/test:test_support", | 1750 "//base/test:test_support", |
| 1750 "//base/test:test_support_perf", | 1751 "//base/test:test_support_perf", |
| 1751 "//testing/gtest", | 1752 "//testing/gtest", |
| 1752 "//testing/perf", | 1753 "//testing/perf", |
| 1753 ] | 1754 ] |
| 1754 | 1755 |
| 1755 if (is_android) { | 1756 if (is_android) { |
| 1756 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1757 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1757 } | 1758 } |
| 1758 } | 1759 } |
| (...skipping 926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2685 } | 2686 } |
| 2686 | 2687 |
| 2687 fuzzer_test("base_json_correctness_fuzzer") { | 2688 fuzzer_test("base_json_correctness_fuzzer") { |
| 2688 sources = [ | 2689 sources = [ |
| 2689 "json/correctness_fuzzer.cc", | 2690 "json/correctness_fuzzer.cc", |
| 2690 ] | 2691 ] |
| 2691 deps = [ | 2692 deps = [ |
| 2692 ":base", | 2693 ":base", |
| 2693 ] | 2694 ] |
| 2694 } | 2695 } |
| OLD | NEW |