Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(755)

Side by Side Diff: base/BUILD.gn

Issue 2945433003: Add ClampedNumeric templates (Closed)
Patch Set: more docs and modulus Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/numerics/README.md » ('j') | base/numerics/README.md » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 596 "numerics/checked_math.h",
597 "numerics/checked_math_impl.h", 597 "numerics/checked_math_impl.h",
598 "numerics/clamped_math.h",
599 "numerics/clamped_math_impl.h",
598 "numerics/safe_conversions.h", 600 "numerics/safe_conversions.h",
599 "numerics/safe_conversions_impl.h", 601 "numerics/safe_conversions_impl.h",
600 "numerics/safe_math.h", 602 "numerics/safe_math.h",
601 "numerics/safe_math_shared_impl.h", 603 "numerics/safe_math_shared_impl.h",
602 "numerics/saturated_arithmetic.h", 604 "numerics/saturated_arithmetic.h",
603 "numerics/saturated_arithmetic_arm.h", 605 "numerics/saturated_arithmetic_arm.h",
604 "observer_list.h", 606 "observer_list.h",
605 "observer_list_threadsafe.h", 607 "observer_list_threadsafe.h",
606 "optional.h", 608 "optional.h",
607 "os_compat_android.cc", 609 "os_compat_android.cc",
(...skipping 2179 matching lines...) Expand 10 before | Expand all | Expand 10 after
2787 } 2789 }
2788 2790
2789 fuzzer_test("base_json_correctness_fuzzer") { 2791 fuzzer_test("base_json_correctness_fuzzer") {
2790 sources = [ 2792 sources = [
2791 "json/correctness_fuzzer.cc", 2793 "json/correctness_fuzzer.cc",
2792 ] 2794 ]
2793 deps = [ 2795 deps = [
2794 ":base", 2796 ":base",
2795 ] 2797 ]
2796 } 2798 }
OLDNEW
« no previous file with comments | « no previous file | base/numerics/README.md » ('j') | base/numerics/README.md » ('J')

Powered by Google App Engine
This is Rietveld 408576698