| 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 1988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1999 "metrics/sample_vector_unittest.cc", | 1999 "metrics/sample_vector_unittest.cc", |
| 2000 "metrics/sparse_histogram_unittest.cc", | 2000 "metrics/sparse_histogram_unittest.cc", |
| 2001 "metrics/statistics_recorder_unittest.cc", | 2001 "metrics/statistics_recorder_unittest.cc", |
| 2002 "native_library_unittest.cc", | 2002 "native_library_unittest.cc", |
| 2003 "numerics/safe_numerics_unittest.cc", | 2003 "numerics/safe_numerics_unittest.cc", |
| 2004 "numerics/saturated_arithmetic_unittest.cc", | 2004 "numerics/saturated_arithmetic_unittest.cc", |
| 2005 "observer_list_unittest.cc", | 2005 "observer_list_unittest.cc", |
| 2006 "optional_unittest.cc", | 2006 "optional_unittest.cc", |
| 2007 "os_compat_android_unittest.cc", | 2007 "os_compat_android_unittest.cc", |
| 2008 "path_service_unittest.cc", | 2008 "path_service_unittest.cc", |
| 2009 "pending_task_unittest.cc", |
| 2009 "pickle_unittest.cc", | 2010 "pickle_unittest.cc", |
| 2010 "posix/file_descriptor_shuffle_unittest.cc", | 2011 "posix/file_descriptor_shuffle_unittest.cc", |
| 2011 "posix/unix_domain_socket_linux_unittest.cc", | 2012 "posix/unix_domain_socket_linux_unittest.cc", |
| 2012 "power_monitor/power_monitor_unittest.cc", | 2013 "power_monitor/power_monitor_unittest.cc", |
| 2013 "process/memory_unittest.cc", | 2014 "process/memory_unittest.cc", |
| 2014 "process/memory_unittest_mac.h", | 2015 "process/memory_unittest_mac.h", |
| 2015 "process/memory_unittest_mac.mm", | 2016 "process/memory_unittest_mac.mm", |
| 2016 "process/process_metrics_unittest.cc", | 2017 "process/process_metrics_unittest.cc", |
| 2017 "process/process_metrics_unittest_ios.cc", | 2018 "process/process_metrics_unittest_ios.cc", |
| 2018 "process/process_unittest.cc", | 2019 "process/process_unittest.cc", |
| (...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2622 } | 2623 } |
| 2623 | 2624 |
| 2624 fuzzer_test("base_json_correctness_fuzzer") { | 2625 fuzzer_test("base_json_correctness_fuzzer") { |
| 2625 sources = [ | 2626 sources = [ |
| 2626 "json/correctness_fuzzer.cc", | 2627 "json/correctness_fuzzer.cc", |
| 2627 ] | 2628 ] |
| 2628 deps = [ | 2629 deps = [ |
| 2629 ":base", | 2630 ":base", |
| 2630 ] | 2631 ] |
| 2631 } | 2632 } |
| OLD | NEW |