| 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 1943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1954 "mac/mac_util_unittest.mm", | 1954 "mac/mac_util_unittest.mm", |
| 1955 "mac/mach_port_broker_unittest.cc", | 1955 "mac/mach_port_broker_unittest.cc", |
| 1956 "mac/objc_property_releaser_unittest.mm", | 1956 "mac/objc_property_releaser_unittest.mm", |
| 1957 "mac/scoped_nsobject_unittest.mm", | 1957 "mac/scoped_nsobject_unittest.mm", |
| 1958 "mac/scoped_objc_class_swizzler_unittest.mm", | 1958 "mac/scoped_objc_class_swizzler_unittest.mm", |
| 1959 "mac/scoped_sending_event_unittest.mm", | 1959 "mac/scoped_sending_event_unittest.mm", |
| 1960 "md5_unittest.cc", | 1960 "md5_unittest.cc", |
| 1961 "memory/aligned_memory_unittest.cc", | 1961 "memory/aligned_memory_unittest.cc", |
| 1962 "memory/discardable_shared_memory_unittest.cc", | 1962 "memory/discardable_shared_memory_unittest.cc", |
| 1963 "memory/linked_ptr_unittest.cc", | 1963 "memory/linked_ptr_unittest.cc", |
| 1964 "memory/memory_coordinator_client_registry_unittest.cc", |
| 1964 "memory/memory_pressure_listener_unittest.cc", | 1965 "memory/memory_pressure_listener_unittest.cc", |
| 1965 "memory/memory_pressure_monitor_chromeos_unittest.cc", | 1966 "memory/memory_pressure_monitor_chromeos_unittest.cc", |
| 1966 "memory/memory_pressure_monitor_mac_unittest.cc", | 1967 "memory/memory_pressure_monitor_mac_unittest.cc", |
| 1967 "memory/memory_pressure_monitor_unittest.cc", | 1968 "memory/memory_pressure_monitor_unittest.cc", |
| 1968 "memory/memory_pressure_monitor_win_unittest.cc", | 1969 "memory/memory_pressure_monitor_win_unittest.cc", |
| 1969 "memory/ptr_util_unittest.cc", | 1970 "memory/ptr_util_unittest.cc", |
| 1970 "memory/ref_counted_memory_unittest.cc", | 1971 "memory/ref_counted_memory_unittest.cc", |
| 1971 "memory/ref_counted_unittest.cc", | 1972 "memory/ref_counted_unittest.cc", |
| 1972 "memory/scoped_vector_unittest.cc", | 1973 "memory/scoped_vector_unittest.cc", |
| 1973 "memory/shared_memory_mac_unittest.cc", | 1974 "memory/shared_memory_mac_unittest.cc", |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2618 } | 2619 } |
| 2619 | 2620 |
| 2620 fuzzer_test("base_json_correctness_fuzzer") { | 2621 fuzzer_test("base_json_correctness_fuzzer") { |
| 2621 sources = [ | 2622 sources = [ |
| 2622 "json/correctness_fuzzer.cc", | 2623 "json/correctness_fuzzer.cc", |
| 2623 ] | 2624 ] |
| 2624 deps = [ | 2625 deps = [ |
| 2625 ":base", | 2626 ":base", |
| 2626 ] | 2627 ] |
| 2627 } | 2628 } |
| OLD | NEW |