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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 "native_library_posix.cc", | 575 "native_library_posix.cc", |
576 "native_library_win.cc", | 576 "native_library_win.cc", |
577 "nix/mime_util_xdg.cc", | 577 "nix/mime_util_xdg.cc", |
578 "nix/mime_util_xdg.h", | 578 "nix/mime_util_xdg.h", |
579 "nix/xdg_util.cc", | 579 "nix/xdg_util.cc", |
580 "nix/xdg_util.h", | 580 "nix/xdg_util.h", |
581 "numerics/safe_conversions.h", | 581 "numerics/safe_conversions.h", |
582 "numerics/safe_conversions_impl.h", | 582 "numerics/safe_conversions_impl.h", |
583 "numerics/safe_math.h", | 583 "numerics/safe_math.h", |
584 "numerics/safe_math_impl.h", | 584 "numerics/safe_math_impl.h", |
| 585 "numerics/saturated_arithmetic.h", |
| 586 "numerics/saturated_arithmetic_arm.h", |
585 "observer_list.h", | 587 "observer_list.h", |
586 "observer_list_threadsafe.h", | 588 "observer_list_threadsafe.h", |
587 "optional.h", | 589 "optional.h", |
588 "os_compat_android.cc", | 590 "os_compat_android.cc", |
589 "os_compat_android.h", | 591 "os_compat_android.h", |
590 "os_compat_nacl.cc", | 592 "os_compat_nacl.cc", |
591 "os_compat_nacl.h", | 593 "os_compat_nacl.h", |
592 "path_service.cc", | 594 "path_service.cc", |
593 "path_service.h", | 595 "path_service.h", |
594 "pending_task.cc", | 596 "pending_task.cc", |
(...skipping 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1876 "metrics/metrics_hashes_unittest.cc", | 1878 "metrics/metrics_hashes_unittest.cc", |
1877 "metrics/persistent_histogram_allocator_unittest.cc", | 1879 "metrics/persistent_histogram_allocator_unittest.cc", |
1878 "metrics/persistent_memory_allocator_unittest.cc", | 1880 "metrics/persistent_memory_allocator_unittest.cc", |
1879 "metrics/persistent_sample_map_unittest.cc", | 1881 "metrics/persistent_sample_map_unittest.cc", |
1880 "metrics/sample_map_unittest.cc", | 1882 "metrics/sample_map_unittest.cc", |
1881 "metrics/sample_vector_unittest.cc", | 1883 "metrics/sample_vector_unittest.cc", |
1882 "metrics/sparse_histogram_unittest.cc", | 1884 "metrics/sparse_histogram_unittest.cc", |
1883 "metrics/statistics_recorder_unittest.cc", | 1885 "metrics/statistics_recorder_unittest.cc", |
1884 "native_library_unittest.cc", | 1886 "native_library_unittest.cc", |
1885 "numerics/safe_numerics_unittest.cc", | 1887 "numerics/safe_numerics_unittest.cc", |
| 1888 "numerics/saturated_arithmetic_unittest.cc", |
1886 "observer_list_unittest.cc", | 1889 "observer_list_unittest.cc", |
1887 "optional_unittest.cc", | 1890 "optional_unittest.cc", |
1888 "os_compat_android_unittest.cc", | 1891 "os_compat_android_unittest.cc", |
1889 "path_service_unittest.cc", | 1892 "path_service_unittest.cc", |
1890 "pickle_unittest.cc", | 1893 "pickle_unittest.cc", |
1891 "posix/file_descriptor_shuffle_unittest.cc", | 1894 "posix/file_descriptor_shuffle_unittest.cc", |
1892 "posix/unix_domain_socket_linux_unittest.cc", | 1895 "posix/unix_domain_socket_linux_unittest.cc", |
1893 "power_monitor/power_monitor_unittest.cc", | 1896 "power_monitor/power_monitor_unittest.cc", |
1894 "process/memory_unittest.cc", | 1897 "process/memory_unittest.cc", |
1895 "process/memory_unittest_mac.h", | 1898 "process/memory_unittest_mac.h", |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2483 } | 2486 } |
2484 | 2487 |
2485 fuzzer_test("base_json_correctness_fuzzer") { | 2488 fuzzer_test("base_json_correctness_fuzzer") { |
2486 sources = [ | 2489 sources = [ |
2487 "json/correctness_fuzzer.cc", | 2490 "json/correctness_fuzzer.cc", |
2488 ] | 2491 ] |
2489 deps = [ | 2492 deps = [ |
2490 ":base", | 2493 ":base", |
2491 ] | 2494 ] |
2492 } | 2495 } |
OLD | NEW |