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 1794 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1805 configs += [ "//build/config/compiler:enable_arc" ] | 1805 configs += [ "//build/config/compiler:enable_arc" ] |
1806 deps = [ | 1806 deps = [ |
1807 ":base", | 1807 ":base", |
1808 "//testing/gtest", | 1808 "//testing/gtest", |
1809 ] | 1809 ] |
1810 } | 1810 } |
1811 } | 1811 } |
1812 | 1812 |
1813 test("base_unittests") { | 1813 test("base_unittests") { |
1814 sources = [ | 1814 sources = [ |
1815 "allocator/tcmalloc_unittest.cc", | |
1816 "android/application_status_listener_unittest.cc", | |
1817 "android/content_uri_utils_unittest.cc", | |
1818 "android/jni_android_unittest.cc", | |
1819 "android/jni_array_unittest.cc", | |
1820 "android/jni_string_unittest.cc", | |
1821 "android/library_loader/library_prefetcher_unittest.cc", | |
1822 "android/path_utils_unittest.cc", | |
1823 "android/scoped_java_ref_unittest.cc", | |
1824 "android/sys_utils_unittest.cc", | |
1825 "android/unguessable_token_android_unittest.cc", | |
1826 "at_exit_unittest.cc", | |
1827 "atomicops_unittest.cc", | |
1828 "barrier_closure_unittest.cc", | |
1829 "base64_unittest.cc", | |
1830 "base64url_unittest.cc", | |
1831 "big_endian_unittest.cc", | |
1832 "bind_helpers_unittest.cc", | |
1833 "bind_unittest.cc", | |
1834 "bit_cast_unittest.cc", | |
1835 "bits_unittest.cc", | |
1836 "build_time_unittest.cc", | |
1837 "callback_helpers_unittest.cc", | |
1838 "callback_list_unittest.cc", | |
1839 "callback_unittest.cc", | |
1840 "cancelable_callback_unittest.cc", | |
1841 "command_line_unittest.cc", | |
1842 "containers/adapters_unittest.cc", | |
1843 "containers/hash_tables_unittest.cc", | |
1844 "containers/linked_list_unittest.cc", | |
1845 "containers/mru_cache_unittest.cc", | |
1846 "containers/scoped_ptr_hash_map_unittest.cc", | |
1847 "containers/small_map_unittest.cc", | |
1848 "containers/stack_container_unittest.cc", | |
1849 "cpu_unittest.cc", | |
1850 "debug/activity_analyzer_unittest.cc", | |
1851 "debug/activity_tracker_unittest.cc", | |
1852 "debug/crash_logging_unittest.cc", | |
1853 "debug/debugger_unittest.cc", | |
1854 "debug/leak_tracker_unittest.cc", | |
1855 "debug/proc_maps_linux_unittest.cc", | |
1856 "debug/stack_trace_unittest.cc", | |
1857 "debug/task_annotator_unittest.cc", | |
1858 "debug/thread_heap_usage_tracker_unittest.cc", | |
1859 "deferred_sequenced_task_runner_unittest.cc", | |
1860 "environment_unittest.cc", | |
1861 "feature_list_unittest.cc", | |
1862 "file_version_info_win_unittest.cc", | |
1863 "files/dir_reader_posix_unittest.cc", | |
1864 "files/file_descriptor_watcher_posix_unittest.cc", | |
1865 "files/file_locking_unittest.cc", | |
1866 "files/file_path_unittest.cc", | |
1867 "files/file_path_watcher_unittest.cc", | |
1868 "files/file_proxy_unittest.cc", | |
1869 "files/file_unittest.cc", | |
1870 "files/file_util_proxy_unittest.cc", | |
1871 "files/file_util_unittest.cc", | |
1872 "files/important_file_writer_unittest.cc", | |
1873 "files/memory_mapped_file_unittest.cc", | |
1874 "files/scoped_temp_dir_unittest.cc", | |
1875 "gmock_unittest.cc", | |
1876 "guid_unittest.cc", | |
1877 "hash_unittest.cc", | |
1878 "i18n/break_iterator_unittest.cc", | |
1879 "i18n/case_conversion_unittest.cc", | |
1880 "i18n/char_iterator_unittest.cc", | |
1881 "i18n/file_util_icu_unittest.cc", | |
1882 "i18n/icu_string_conversions_unittest.cc", | |
1883 "i18n/message_formatter_unittest.cc", | |
1884 "i18n/number_formatting_unittest.cc", | |
1885 "i18n/rtl_unittest.cc", | |
1886 "i18n/streaming_utf8_validator_unittest.cc", | |
1887 "i18n/string_search_unittest.cc", | |
1888 "i18n/time_formatting_unittest.cc", | |
1889 "i18n/timezone_unittest.cc", | |
1890 "id_map_unittest.cc", | |
1891 "ios/device_util_unittest.mm", | |
1892 "ios/weak_nsobject_unittest.mm", | |
1893 "json/json_parser_unittest.cc", | |
1894 "json/json_reader_unittest.cc", | |
1895 "json/json_value_converter_unittest.cc", | |
1896 "json/json_value_serializer_unittest.cc", | |
1897 "json/json_writer_unittest.cc", | |
1898 "json/string_escape_unittest.cc", | |
1899 "lazy_instance_unittest.cc", | |
1900 "logging_unittest.cc", | |
1901 "mac/bind_objc_block_unittest.mm", | |
1902 "mac/call_with_eh_frame_unittest.mm", | |
1903 "mac/dispatch_source_mach_unittest.cc", | |
1904 "mac/foundation_util_unittest.mm", | |
1905 "mac/mac_util_unittest.mm", | |
1906 "mac/mach_port_broker_unittest.cc", | |
1907 "mac/objc_property_releaser_unittest.mm", | |
1908 "mac/scoped_nsobject_unittest.mm", | |
1909 "mac/scoped_objc_class_swizzler_unittest.mm", | |
1910 "mac/scoped_sending_event_unittest.mm", | |
1911 "md5_unittest.cc", | |
1912 "memory/aligned_memory_unittest.cc", | |
1913 "memory/discardable_shared_memory_unittest.cc", | |
1914 "memory/linked_ptr_unittest.cc", | |
1915 "memory/memory_pressure_listener_unittest.cc", | |
1916 "memory/memory_pressure_monitor_chromeos_unittest.cc", | |
1917 "memory/memory_pressure_monitor_mac_unittest.cc", | |
1918 "memory/memory_pressure_monitor_unittest.cc", | |
1919 "memory/memory_pressure_monitor_win_unittest.cc", | |
1920 "memory/ptr_util_unittest.cc", | |
1921 "memory/ref_counted_memory_unittest.cc", | |
1922 "memory/ref_counted_unittest.cc", | |
1923 "memory/scoped_vector_unittest.cc", | |
1924 "memory/shared_memory_mac_unittest.cc", | |
1925 "memory/shared_memory_unittest.cc", | |
1926 "memory/shared_memory_win_unittest.cc", | |
1927 "memory/singleton_unittest.cc", | |
1928 "memory/weak_ptr_unittest.cc", | |
1929 "message_loop/message_loop_task_runner_unittest.cc", | |
1930 "message_loop/message_loop_unittest.cc", | |
1931 "message_loop/message_pump_glib_unittest.cc", | |
1932 "message_loop/message_pump_io_ios_unittest.cc", | |
1933 "metrics/bucket_ranges_unittest.cc", | |
1934 "metrics/field_trial_unittest.cc", | |
1935 "metrics/histogram_base_unittest.cc", | |
1936 "metrics/histogram_delta_serialization_unittest.cc", | |
1937 "metrics/histogram_functions_unittest.cc", | |
1938 "metrics/histogram_macros_unittest.cc", | |
1939 "metrics/histogram_snapshot_manager_unittest.cc", | |
1940 "metrics/histogram_unittest.cc", | |
1941 "metrics/metrics_hashes_unittest.cc", | |
1942 "metrics/persistent_histogram_allocator_unittest.cc", | |
1943 "metrics/persistent_memory_allocator_unittest.cc", | |
1944 "metrics/persistent_sample_map_unittest.cc", | |
1945 "metrics/sample_map_unittest.cc", | |
1946 "metrics/sample_vector_unittest.cc", | |
1947 "metrics/sparse_histogram_unittest.cc", | |
1948 "metrics/statistics_recorder_unittest.cc", | |
1949 "native_library_unittest.cc", | |
1950 "numerics/safe_numerics_unittest.cc", | |
1951 "numerics/saturated_arithmetic_unittest.cc", | |
1952 "observer_list_unittest.cc", | |
1953 "optional_unittest.cc", | |
1954 "os_compat_android_unittest.cc", | |
1955 "path_service_unittest.cc", | |
1956 "pickle_unittest.cc", | |
1957 "posix/file_descriptor_shuffle_unittest.cc", | |
1958 "posix/unix_domain_socket_linux_unittest.cc", | |
1959 "power_monitor/power_monitor_unittest.cc", | |
1960 "process/memory_unittest.cc", | |
1961 "process/memory_unittest_mac.h", | |
1962 "process/memory_unittest_mac.mm", | |
1963 "process/process_metrics_unittest.cc", | |
1964 "process/process_metrics_unittest_ios.cc", | |
1965 "process/process_unittest.cc", | |
1966 "process/process_util_unittest.cc", | |
1967 "profiler/stack_sampling_profiler_unittest.cc", | |
1968 "profiler/tracked_time_unittest.cc", | |
1969 "rand_util_unittest.cc", | |
1970 "run_loop_unittest.cc", | |
1971 "scoped_clear_errno_unittest.cc", | |
1972 "scoped_generic_unittest.cc", | |
1973 "scoped_native_library_unittest.cc", | |
1974 "security_unittest.cc", | |
1975 "sequence_checker_unittest.cc", | |
1976 "sequence_token_unittest.cc", | |
1977 "sequenced_task_runner_unittest.cc", | |
1978 "sha1_unittest.cc", | |
1979 "stl_util_unittest.cc", | |
1980 "strings/nullable_string16_unittest.cc", | |
1981 "strings/pattern_unittest.cc", | |
1982 "strings/safe_sprintf_unittest.cc", | |
1983 "strings/string16_unittest.cc", | |
1984 "strings/string_number_conversions_unittest.cc", | 1815 "strings/string_number_conversions_unittest.cc", |
1985 "strings/string_piece_unittest.cc", | 1816 "strings/string_number_conversions_dup.cc", |
1986 "strings/string_split_unittest.cc", | |
1987 "strings/string_tokenizer_unittest.cc", | |
1988 "strings/string_util_unittest.cc", | |
1989 "strings/stringize_macros_unittest.cc", | |
1990 "strings/stringprintf_unittest.cc", | |
1991 "strings/sys_string_conversions_mac_unittest.mm", | |
1992 "strings/sys_string_conversions_unittest.cc", | |
1993 "strings/utf_offset_string_conversions_unittest.cc", | |
1994 "strings/utf_string_conversions_unittest.cc", | |
1995 "supports_user_data_unittest.cc", | |
1996 "sync_socket_unittest.cc", | |
1997 "synchronization/atomic_flag_unittest.cc", | |
1998 "synchronization/condition_variable_unittest.cc", | |
1999 "synchronization/lock_unittest.cc", | |
2000 "synchronization/read_write_lock_unittest.cc", | |
2001 "synchronization/waitable_event_unittest.cc", | |
2002 "synchronization/waitable_event_watcher_unittest.cc", | |
2003 "sys_byteorder_unittest.cc", | |
2004 "sys_info_unittest.cc", | |
2005 "system_monitor/system_monitor_unittest.cc", | |
2006 "task/cancelable_task_tracker_unittest.cc", | |
2007 "task_runner_util_unittest.cc", | |
2008 "task_scheduler/delayed_task_manager_unittest.cc", | |
2009 "task_scheduler/priority_queue_unittest.cc", | |
2010 "task_scheduler/scheduler_lock_unittest.cc", | |
2011 "task_scheduler/scheduler_worker_pool_impl_unittest.cc", | |
2012 "task_scheduler/scheduler_worker_stack_unittest.cc", | |
2013 "task_scheduler/scheduler_worker_unittest.cc", | |
2014 "task_scheduler/scoped_set_task_priority_for_current_thread_unittest.cc", | |
2015 "task_scheduler/sequence_sort_key_unittest.cc", | |
2016 "task_scheduler/sequence_unittest.cc", | |
2017 "task_scheduler/task_scheduler_impl_unittest.cc", | |
2018 "task_scheduler/task_tracker_posix_unittest.cc", | |
2019 "task_scheduler/task_tracker_unittest.cc", | |
2020 "task_scheduler/task_traits_unittest.cc", | |
2021 "task_scheduler/task_unittest.cc", | |
2022 "task_scheduler/test_task_factory.cc", | |
2023 "task_scheduler/test_task_factory.h", | |
2024 "task_scheduler/test_utils.h", | |
2025 "template_util_unittest.cc", | |
2026 "test/histogram_tester_unittest.cc", | |
2027 "test/scoped_mock_time_message_loop_task_runner_unittest.cc", | |
2028 "test/scoped_task_scheduler_unittest.cc", | |
2029 "test/test_pending_task_unittest.cc", | |
2030 "test/test_reg_util_win_unittest.cc", | |
2031 "test/trace_event_analyzer_unittest.cc", | |
2032 "test/user_action_tester_unittest.cc", | |
2033 "threading/non_thread_safe_unittest.cc", | |
2034 "threading/platform_thread_unittest.cc", | |
2035 "threading/post_task_and_reply_impl_unittest.cc", | |
2036 "threading/sequenced_task_runner_handle_unittest.cc", | |
2037 "threading/sequenced_worker_pool_unittest.cc", | |
2038 "threading/simple_thread_unittest.cc", | |
2039 "threading/thread_checker_unittest.cc", | |
2040 "threading/thread_collision_warner_unittest.cc", | |
2041 "threading/thread_id_name_manager_unittest.cc", | |
2042 "threading/thread_local_storage_unittest.cc", | |
2043 "threading/thread_local_unittest.cc", | |
2044 "threading/thread_unittest.cc", | |
2045 "threading/watchdog_unittest.cc", | |
2046 "threading/worker_pool_posix_unittest.cc", | |
2047 "threading/worker_pool_unittest.cc", | |
2048 "time/pr_time_unittest.cc", | |
2049 "time/time_unittest.cc", | |
2050 "time/time_win_unittest.cc", | |
2051 "timer/hi_res_timer_manager_unittest.cc", | |
2052 "timer/mock_timer_unittest.cc", | |
2053 "timer/timer_unittest.cc", | |
2054 "tools_sanity_unittest.cc", | |
2055 "trace_event/blame_context_unittest.cc", | |
2056 "trace_event/event_name_filter_unittest.cc", | |
2057 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", | |
2058 "trace_event/heap_profiler_allocation_register_unittest.cc", | |
2059 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", | |
2060 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", | |
2061 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", | |
2062 "trace_event/java_heap_dump_provider_android_unittest.cc", | |
2063 "trace_event/memory_allocator_dump_unittest.cc", | |
2064 "trace_event/memory_dump_manager_unittest.cc", | |
2065 "trace_event/memory_usage_estimator_unittest.cc", | |
2066 "trace_event/process_memory_dump_unittest.cc", | |
2067 "trace_event/trace_category_unittest.cc", | |
2068 "trace_event/trace_config_unittest.cc", | |
2069 "trace_event/trace_event_argument_unittest.cc", | |
2070 "trace_event/trace_event_filter_test_utils.cc", | |
2071 "trace_event/trace_event_filter_test_utils.h", | |
2072 "trace_event/trace_event_synthetic_delay_unittest.cc", | |
2073 "trace_event/trace_event_system_stats_monitor_unittest.cc", | |
2074 "trace_event/trace_event_unittest.cc", | |
2075 "tracked_objects_unittest.cc", | |
2076 "tuple_unittest.cc", | |
2077 "unguessable_token_unittest.cc", | |
2078 "values_unittest.cc", | |
2079 "version_unittest.cc", | |
2080 "vlog_unittest.cc", | |
2081 "win/dllmain.cc", | |
2082 "win/enum_variant_unittest.cc", | |
2083 "win/event_trace_consumer_unittest.cc", | |
2084 "win/event_trace_controller_unittest.cc", | |
2085 "win/event_trace_provider_unittest.cc", | |
2086 "win/i18n_unittest.cc", | |
2087 "win/iunknown_impl_unittest.cc", | |
2088 "win/message_window_unittest.cc", | |
2089 "win/object_watcher_unittest.cc", | |
2090 "win/pe_image_unittest.cc", | |
2091 "win/registry_unittest.cc", | |
2092 "win/scoped_bstr_unittest.cc", | |
2093 "win/scoped_comptr_unittest.cc", | |
2094 "win/scoped_handle_unittest.cc", | |
2095 "win/scoped_process_information_unittest.cc", | |
2096 "win/scoped_variant_unittest.cc", | |
2097 "win/shortcut_unittest.cc", | |
2098 "win/startup_information_unittest.cc", | |
2099 "win/wait_chain_unittest.cc", | |
2100 "win/win_util_unittest.cc", | |
2101 "win/windows_version_unittest.cc", | |
2102 "win/wrapped_window_proc_unittest.cc", | |
2103 ] | 1817 ] |
2104 | |
2105 defines = [] | |
2106 | |
2107 deps = [ | |
2108 ":base", | |
2109 ":i18n", | |
2110 ":message_loop_tests", | |
2111 "//base/allocator:features", | |
2112 "//base/test:native_library_test_utils", | |
2113 "//base/test:run_all_base_unittests", | |
2114 "//base/test:test_support", | |
2115 "//base/third_party/dynamic_annotations", | |
2116 "//testing/gmock", | |
2117 "//testing/gtest", | |
2118 "//third_party/icu", | |
2119 ] | |
2120 | |
2121 data_deps = [ | |
2122 "//base/test:test_shared_library", | |
2123 ] | |
2124 | |
2125 if (is_ios || is_mac) { | |
2126 deps += [ ":base_unittests_arc" ] | |
2127 } | |
2128 | |
2129 public_deps = [ | |
2130 ":base_unittests_bundle_data", | |
2131 ] | |
2132 | |
2133 # Some unittests depend on the ALLOCATOR_SHIM macro. | |
2134 configs += [ "//base/allocator:allocator_shim_define" ] | |
2135 | |
2136 data = [ | |
2137 "test/data/", | |
2138 ] | |
2139 | |
2140 # Allow more direct string conversions on platforms with native utf8 | |
2141 # strings | |
2142 if (is_mac || is_ios || is_chromeos || is_chromecast) { | |
2143 defines += [ "SYSTEM_NATIVE_UTF8" ] | |
2144 } | |
2145 | |
2146 if (is_android) { | |
2147 deps += [ | |
2148 ":base_java", | |
2149 ":base_java_unittest_support", | |
2150 "//base/android/jni_generator:jni_generator_tests", | |
2151 ] | |
2152 } | |
2153 | |
2154 if (is_ios) { | |
2155 sources -= [ | |
2156 "files/file_locking_unittest.cc", | |
2157 "files/file_path_watcher_unittest.cc", | |
2158 "memory/discardable_shared_memory_unittest.cc", | |
2159 "memory/shared_memory_unittest.cc", | |
2160 "process/memory_unittest.cc", | |
2161 "process/process_unittest.cc", | |
2162 "process/process_util_unittest.cc", | |
2163 "sync_socket_unittest.cc", | |
2164 ] | |
2165 | |
2166 # Pull in specific Mac files for iOS (which have been filtered out by file | |
2167 # name rules). | |
2168 set_sources_assignment_filter([]) | |
2169 sources += [ | |
2170 "mac/bind_objc_block_unittest.mm", | |
2171 "mac/foundation_util_unittest.mm", | |
2172 "mac/objc_property_releaser_unittest.mm", | |
2173 "mac/scoped_nsobject_unittest.mm", | |
2174 "strings/sys_string_conversions_mac_unittest.mm", | |
2175 ] | |
2176 set_sources_assignment_filter(sources_assignment_filter) | |
2177 | |
2178 # TODO(GYP): dep on copy_test_data_ios action. | |
2179 } | |
2180 | |
2181 if (use_partition_alloc) { | |
2182 sources += [ "allocator/partition_allocator/partition_alloc_unittest.cc" ] | |
2183 } | |
2184 | |
2185 if (is_mac) { | |
2186 libs = [ | |
2187 "CoreFoundation.framework", | |
2188 "Foundation.framework", | |
2189 ] | |
2190 } | |
2191 | |
2192 if (is_linux) { | |
2193 if (is_desktop_linux) { | |
2194 sources += [ "nix/xdg_util_unittest.cc" ] | |
2195 } | |
2196 | |
2197 deps += [ "//base/test:malloc_wrapper" ] | |
2198 | |
2199 if (!is_component_build) { | |
2200 # Set rpath to find libmalloc_wrapper.so even in a non-component build. | |
2201 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ] | |
2202 } | |
2203 } | |
2204 | |
2205 if (!use_glib) { | |
2206 sources -= [ "message_loop/message_pump_glib_unittest.cc" ] | |
2207 } | |
2208 | |
2209 if (is_posix && !is_ios) { | |
2210 sources += [ "message_loop/message_pump_libevent_unittest.cc" ] | |
2211 deps += [ "//base/third_party/libevent" ] | |
2212 } | |
2213 | |
2214 if (is_android) { | |
2215 deps += [ "//testing/android/native_test:native_test_native_code" ] | |
2216 set_sources_assignment_filter([]) | |
2217 sources += [ | |
2218 "debug/proc_maps_linux_unittest.cc", | |
2219 "trace_event/trace_event_android_unittest.cc", | |
2220 ] | |
2221 set_sources_assignment_filter(sources_assignment_filter) | |
2222 } | |
2223 | |
2224 if (is_win) { | |
2225 deps += [ "//base:scoped_handle_test_dll" ] | |
2226 if (current_cpu == "x64") { | |
2227 sources += [ "profiler/win32_stack_frame_unwinder_unittest.cc" ] | |
2228 deps += [ ":base_profiler_test_support_library" ] | |
2229 } | |
2230 } | |
2231 | |
2232 if (use_experimental_allocator_shim) { | |
2233 sources += [ "allocator/allocator_shim_unittest.cc" ] | |
2234 } | |
2235 | |
2236 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
2237 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | |
2238 | |
2239 # Symbols for crashes when running tests on swarming. | |
2240 if (symbol_level > 0) { | |
2241 if (is_win) { | |
2242 data += [ "$root_out_dir/base_unittests.exe.pdb" ] | |
2243 } else if (is_mac) { | |
2244 # TODO(crbug.com/330301): make this conditional on mac_strip_release. | |
2245 # data += [ "$root_out_dir/base_unittests.dSYM/" ] | |
2246 } | |
2247 } | |
2248 | |
2249 if (use_cfi_cast) { | |
2250 # TODO(krasin): remove CFI_CAST_CHECK, see https://crbug.com/626794. | |
2251 defines += [ "CFI_CAST_CHECK" ] | |
2252 } | |
2253 } | 1818 } |
2254 | 1819 |
2255 action("build_date") { | 1820 action("build_date") { |
2256 script = "//build/write_build_date_header.py" | 1821 script = "//build/write_build_date_header.py" |
2257 | 1822 |
2258 # Force recalculation if there's been a change. | 1823 # Force recalculation if there's been a change. |
2259 inputs = [ | 1824 inputs = [ |
2260 "//build/util/LASTCHANGE", | 1825 "//build/util/LASTCHANGE", |
2261 ] | 1826 ] |
2262 outputs = [ | 1827 outputs = [ |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2564 } | 2129 } |
2565 | 2130 |
2566 fuzzer_test("base_json_correctness_fuzzer") { | 2131 fuzzer_test("base_json_correctness_fuzzer") { |
2567 sources = [ | 2132 sources = [ |
2568 "json/correctness_fuzzer.cc", | 2133 "json/correctness_fuzzer.cc", |
2569 ] | 2134 ] |
2570 deps = [ | 2135 deps = [ |
2571 ":base", | 2136 ":base", |
2572 ] | 2137 ] |
2573 } | 2138 } |
OLD | NEW |