| 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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 586     "native_library.cc", | 586     "native_library.cc", | 
| 587     "native_library.h", | 587     "native_library.h", | 
| 588     "native_library_ios.mm", | 588     "native_library_ios.mm", | 
| 589     "native_library_mac.mm", | 589     "native_library_mac.mm", | 
| 590     "native_library_posix.cc", | 590     "native_library_posix.cc", | 
| 591     "native_library_win.cc", | 591     "native_library_win.cc", | 
| 592     "nix/mime_util_xdg.cc", | 592     "nix/mime_util_xdg.cc", | 
| 593     "nix/mime_util_xdg.h", | 593     "nix/mime_util_xdg.h", | 
| 594     "nix/xdg_util.cc", | 594     "nix/xdg_util.cc", | 
| 595     "nix/xdg_util.h", | 595     "nix/xdg_util.h", | 
|  | 596     "numerics/checked_math.h", | 
|  | 597     "numerics/checked_math_impl.h", | 
| 596     "numerics/safe_conversions.h", | 598     "numerics/safe_conversions.h", | 
| 597     "numerics/safe_conversions_impl.h", | 599     "numerics/safe_conversions_impl.h", | 
| 598     "numerics/safe_math.h", | 600     "numerics/safe_math.h", | 
| 599     "numerics/safe_math_impl.h", | 601     "numerics/safe_math_shared_impl.h", | 
| 600     "numerics/saturated_arithmetic.h", | 602     "numerics/saturated_arithmetic.h", | 
| 601     "numerics/saturated_arithmetic_arm.h", | 603     "numerics/saturated_arithmetic_arm.h", | 
| 602     "observer_list.h", | 604     "observer_list.h", | 
| 603     "observer_list_threadsafe.h", | 605     "observer_list_threadsafe.h", | 
| 604     "optional.h", | 606     "optional.h", | 
| 605     "os_compat_android.cc", | 607     "os_compat_android.cc", | 
| 606     "os_compat_android.h", | 608     "os_compat_android.h", | 
| 607     "os_compat_nacl.cc", | 609     "os_compat_nacl.cc", | 
| 608     "os_compat_nacl.h", | 610     "os_compat_nacl.h", | 
| 609     "path_service.cc", | 611     "path_service.cc", | 
| (...skipping 2151 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2761 } | 2763 } | 
| 2762 | 2764 | 
| 2763 fuzzer_test("base_json_correctness_fuzzer") { | 2765 fuzzer_test("base_json_correctness_fuzzer") { | 
| 2764   sources = [ | 2766   sources = [ | 
| 2765     "json/correctness_fuzzer.cc", | 2767     "json/correctness_fuzzer.cc", | 
| 2766   ] | 2768   ] | 
| 2767   deps = [ | 2769   deps = [ | 
| 2768     ":base", | 2770     ":base", | 
| 2769   ] | 2771   ] | 
| 2770 } | 2772 } | 
| OLD | NEW | 
|---|