| 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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 "profiler/native_stack_sampler.h", | 694 "profiler/native_stack_sampler.h", |
| 695 "profiler/native_stack_sampler_mac.cc", | 695 "profiler/native_stack_sampler_mac.cc", |
| 696 "profiler/native_stack_sampler_posix.cc", | 696 "profiler/native_stack_sampler_posix.cc", |
| 697 "profiler/native_stack_sampler_win.cc", | 697 "profiler/native_stack_sampler_win.cc", |
| 698 "profiler/scoped_profile.cc", | 698 "profiler/scoped_profile.cc", |
| 699 "profiler/scoped_profile.h", | 699 "profiler/scoped_profile.h", |
| 700 "profiler/scoped_tracker.cc", | 700 "profiler/scoped_tracker.cc", |
| 701 "profiler/scoped_tracker.h", | 701 "profiler/scoped_tracker.h", |
| 702 "profiler/stack_sampling_profiler.cc", | 702 "profiler/stack_sampling_profiler.cc", |
| 703 "profiler/stack_sampling_profiler.h", | 703 "profiler/stack_sampling_profiler.h", |
| 704 "profiler/tracked_time.cc", | |
| 705 "profiler/tracked_time.h", | |
| 706 "rand_util.cc", | 704 "rand_util.cc", |
| 707 "rand_util.h", | 705 "rand_util.h", |
| 708 "rand_util_nacl.cc", | 706 "rand_util_nacl.cc", |
| 709 "rand_util_posix.cc", | 707 "rand_util_posix.cc", |
| 710 "rand_util_win.cc", | 708 "rand_util_win.cc", |
| 711 "run_loop.cc", | 709 "run_loop.cc", |
| 712 "run_loop.h", | 710 "run_loop.h", |
| 713 "scoped_clear_errno.h", | 711 "scoped_clear_errno.h", |
| 714 "scoped_generic.h", | 712 "scoped_generic.h", |
| 715 "scoped_native_library.cc", | 713 "scoped_native_library.cc", |
| (...skipping 1417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2133 "power_monitor/power_monitor_unittest.cc", | 2131 "power_monitor/power_monitor_unittest.cc", |
| 2134 "process/memory_unittest.cc", | 2132 "process/memory_unittest.cc", |
| 2135 "process/memory_unittest_mac.h", | 2133 "process/memory_unittest_mac.h", |
| 2136 "process/memory_unittest_mac.mm", | 2134 "process/memory_unittest_mac.mm", |
| 2137 "process/process_info_unittest.cc", | 2135 "process/process_info_unittest.cc", |
| 2138 "process/process_metrics_unittest.cc", | 2136 "process/process_metrics_unittest.cc", |
| 2139 "process/process_metrics_unittest_ios.cc", | 2137 "process/process_metrics_unittest_ios.cc", |
| 2140 "process/process_unittest.cc", | 2138 "process/process_unittest.cc", |
| 2141 "process/process_util_unittest.cc", | 2139 "process/process_util_unittest.cc", |
| 2142 "profiler/stack_sampling_profiler_unittest.cc", | 2140 "profiler/stack_sampling_profiler_unittest.cc", |
| 2143 "profiler/tracked_time_unittest.cc", | |
| 2144 "rand_util_unittest.cc", | 2141 "rand_util_unittest.cc", |
| 2145 "run_loop_unittest.cc", | 2142 "run_loop_unittest.cc", |
| 2146 "scoped_clear_errno_unittest.cc", | 2143 "scoped_clear_errno_unittest.cc", |
| 2147 "scoped_generic_unittest.cc", | 2144 "scoped_generic_unittest.cc", |
| 2148 "scoped_native_library_unittest.cc", | 2145 "scoped_native_library_unittest.cc", |
| 2149 "security_unittest.cc", | 2146 "security_unittest.cc", |
| 2150 "sequence_checker_unittest.cc", | 2147 "sequence_checker_unittest.cc", |
| 2151 "sequence_token_unittest.cc", | 2148 "sequence_token_unittest.cc", |
| 2152 "sequenced_task_runner_unittest.cc", | 2149 "sequenced_task_runner_unittest.cc", |
| 2153 "sha1_unittest.cc", | 2150 "sha1_unittest.cc", |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2790 } | 2787 } |
| 2791 | 2788 |
| 2792 fuzzer_test("base_json_correctness_fuzzer") { | 2789 fuzzer_test("base_json_correctness_fuzzer") { |
| 2793 sources = [ | 2790 sources = [ |
| 2794 "json/correctness_fuzzer.cc", | 2791 "json/correctness_fuzzer.cc", |
| 2795 ] | 2792 ] |
| 2796 deps = [ | 2793 deps = [ |
| 2797 ":base", | 2794 ":base", |
| 2798 ] | 2795 ] |
| 2799 } | 2796 } |
| OLD | NEW |