| 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 1912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1923 "mac/mac_util_unittest.mm", | 1923 "mac/mac_util_unittest.mm", |
| 1924 "mac/mach_port_broker_unittest.cc", | 1924 "mac/mach_port_broker_unittest.cc", |
| 1925 "mac/objc_property_releaser_unittest.mm", | 1925 "mac/objc_property_releaser_unittest.mm", |
| 1926 "mac/scoped_nsobject_unittest.mm", | 1926 "mac/scoped_nsobject_unittest.mm", |
| 1927 "mac/scoped_objc_class_swizzler_unittest.mm", | 1927 "mac/scoped_objc_class_swizzler_unittest.mm", |
| 1928 "mac/scoped_sending_event_unittest.mm", | 1928 "mac/scoped_sending_event_unittest.mm", |
| 1929 "md5_unittest.cc", | 1929 "md5_unittest.cc", |
| 1930 "memory/aligned_memory_unittest.cc", | 1930 "memory/aligned_memory_unittest.cc", |
| 1931 "memory/discardable_shared_memory_unittest.cc", | 1931 "memory/discardable_shared_memory_unittest.cc", |
| 1932 "memory/linked_ptr_unittest.cc", | 1932 "memory/linked_ptr_unittest.cc", |
| 1933 "memory/memory_coordinator_client_registry_unittest.cc", |
| 1933 "memory/memory_pressure_listener_unittest.cc", | 1934 "memory/memory_pressure_listener_unittest.cc", |
| 1934 "memory/memory_pressure_monitor_chromeos_unittest.cc", | 1935 "memory/memory_pressure_monitor_chromeos_unittest.cc", |
| 1935 "memory/memory_pressure_monitor_mac_unittest.cc", | 1936 "memory/memory_pressure_monitor_mac_unittest.cc", |
| 1936 "memory/memory_pressure_monitor_unittest.cc", | 1937 "memory/memory_pressure_monitor_unittest.cc", |
| 1937 "memory/memory_pressure_monitor_win_unittest.cc", | 1938 "memory/memory_pressure_monitor_win_unittest.cc", |
| 1938 "memory/ptr_util_unittest.cc", | 1939 "memory/ptr_util_unittest.cc", |
| 1939 "memory/ref_counted_memory_unittest.cc", | 1940 "memory/ref_counted_memory_unittest.cc", |
| 1940 "memory/ref_counted_unittest.cc", | 1941 "memory/ref_counted_unittest.cc", |
| 1941 "memory/scoped_vector_unittest.cc", | 1942 "memory/scoped_vector_unittest.cc", |
| 1942 "memory/shared_memory_mac_unittest.cc", | 1943 "memory/shared_memory_mac_unittest.cc", |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2587 } | 2588 } |
| 2588 | 2589 |
| 2589 fuzzer_test("base_json_correctness_fuzzer") { | 2590 fuzzer_test("base_json_correctness_fuzzer") { |
| 2590 sources = [ | 2591 sources = [ |
| 2591 "json/correctness_fuzzer.cc", | 2592 "json/correctness_fuzzer.cc", |
| 2592 ] | 2593 ] |
| 2593 deps = [ | 2594 deps = [ |
| 2594 ":base", | 2595 ":base", |
| 2595 ] | 2596 ] |
| 2596 } | 2597 } |
| OLD | NEW |