| 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 2001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2012 "metrics/sample_vector_unittest.cc", | 2012 "metrics/sample_vector_unittest.cc", |
| 2013 "metrics/sparse_histogram_unittest.cc", | 2013 "metrics/sparse_histogram_unittest.cc", |
| 2014 "metrics/statistics_recorder_unittest.cc", | 2014 "metrics/statistics_recorder_unittest.cc", |
| 2015 "native_library_unittest.cc", | 2015 "native_library_unittest.cc", |
| 2016 "numerics/safe_numerics_unittest.cc", | 2016 "numerics/safe_numerics_unittest.cc", |
| 2017 "numerics/saturated_arithmetic_unittest.cc", | 2017 "numerics/saturated_arithmetic_unittest.cc", |
| 2018 "observer_list_unittest.cc", | 2018 "observer_list_unittest.cc", |
| 2019 "optional_unittest.cc", | 2019 "optional_unittest.cc", |
| 2020 "os_compat_android_unittest.cc", | 2020 "os_compat_android_unittest.cc", |
| 2021 "path_service_unittest.cc", | 2021 "path_service_unittest.cc", |
| 2022 "pending_task_unittest.cc", |
| 2022 "pickle_unittest.cc", | 2023 "pickle_unittest.cc", |
| 2023 "posix/file_descriptor_shuffle_unittest.cc", | 2024 "posix/file_descriptor_shuffle_unittest.cc", |
| 2024 "posix/unix_domain_socket_linux_unittest.cc", | 2025 "posix/unix_domain_socket_linux_unittest.cc", |
| 2025 "power_monitor/power_monitor_unittest.cc", | 2026 "power_monitor/power_monitor_unittest.cc", |
| 2026 "process/memory_unittest.cc", | 2027 "process/memory_unittest.cc", |
| 2027 "process/memory_unittest_mac.h", | 2028 "process/memory_unittest_mac.h", |
| 2028 "process/memory_unittest_mac.mm", | 2029 "process/memory_unittest_mac.mm", |
| 2029 "process/process_metrics_unittest.cc", | 2030 "process/process_metrics_unittest.cc", |
| 2030 "process/process_metrics_unittest_ios.cc", | 2031 "process/process_metrics_unittest_ios.cc", |
| 2031 "process/process_unittest.cc", | 2032 "process/process_unittest.cc", |
| (...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2639 } | 2640 } |
| 2640 | 2641 |
| 2641 fuzzer_test("base_json_correctness_fuzzer") { | 2642 fuzzer_test("base_json_correctness_fuzzer") { |
| 2642 sources = [ | 2643 sources = [ |
| 2643 "json/correctness_fuzzer.cc", | 2644 "json/correctness_fuzzer.cc", |
| 2644 ] | 2645 ] |
| 2645 deps = [ | 2646 deps = [ |
| 2646 ":base", | 2647 ":base", |
| 2647 ] | 2648 ] |
| 2648 } | 2649 } |
| OLD | NEW |