| 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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 "native_library_ios.mm", | 590 "native_library_ios.mm", |
| 591 "native_library_mac.mm", | 591 "native_library_mac.mm", |
| 592 "native_library_posix.cc", | 592 "native_library_posix.cc", |
| 593 "native_library_win.cc", | 593 "native_library_win.cc", |
| 594 "nix/mime_util_xdg.cc", | 594 "nix/mime_util_xdg.cc", |
| 595 "nix/mime_util_xdg.h", | 595 "nix/mime_util_xdg.h", |
| 596 "nix/xdg_util.cc", | 596 "nix/xdg_util.cc", |
| 597 "nix/xdg_util.h", | 597 "nix/xdg_util.h", |
| 598 "numerics/checked_math.h", | 598 "numerics/checked_math.h", |
| 599 "numerics/checked_math_impl.h", | 599 "numerics/checked_math_impl.h", |
| 600 "numerics/clamped_math.h", |
| 601 "numerics/clamped_math_impl.h", |
| 600 "numerics/safe_conversions.h", | 602 "numerics/safe_conversions.h", |
| 601 "numerics/safe_conversions_impl.h", | 603 "numerics/safe_conversions_impl.h", |
| 602 "numerics/safe_math.h", | 604 "numerics/safe_math.h", |
| 603 "numerics/safe_math_shared_impl.h", | 605 "numerics/safe_math_shared_impl.h", |
| 604 "numerics/saturated_arithmetic.h", | 606 "numerics/saturated_arithmetic.h", |
| 605 "numerics/saturated_arithmetic_arm.h", | 607 "numerics/saturated_arithmetic_arm.h", |
| 606 "observer_list.h", | 608 "observer_list.h", |
| 607 "observer_list_threadsafe.h", | 609 "observer_list_threadsafe.h", |
| 608 "optional.h", | 610 "optional.h", |
| 609 "os_compat_android.cc", | 611 "os_compat_android.cc", |
| (...skipping 2186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2796 } | 2798 } |
| 2797 | 2799 |
| 2798 fuzzer_test("base_json_correctness_fuzzer") { | 2800 fuzzer_test("base_json_correctness_fuzzer") { |
| 2799 sources = [ | 2801 sources = [ |
| 2800 "json/correctness_fuzzer.cc", | 2802 "json/correctness_fuzzer.cc", |
| 2801 ] | 2803 ] |
| 2802 deps = [ | 2804 deps = [ |
| 2803 ":base", | 2805 ":base", |
| 2804 ] | 2806 ] |
| 2805 } | 2807 } |
| OLD | NEW |