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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 "strings/pattern.cc", | 760 "strings/pattern.cc", |
761 "strings/pattern.h", | 761 "strings/pattern.h", |
762 "strings/safe_sprintf.cc", | 762 "strings/safe_sprintf.cc", |
763 "strings/safe_sprintf.h", | 763 "strings/safe_sprintf.h", |
764 "strings/string16.cc", | 764 "strings/string16.cc", |
765 "strings/string16.h", | 765 "strings/string16.h", |
766 "strings/string_number_conversions.cc", | 766 "strings/string_number_conversions.cc", |
767 "strings/string_number_conversions.h", | 767 "strings/string_number_conversions.h", |
768 "strings/string_piece.cc", | 768 "strings/string_piece.cc", |
769 "strings/string_piece.h", | 769 "strings/string_piece.h", |
| 770 "strings/string_piece_forward.h", |
770 "strings/string_split.cc", | 771 "strings/string_split.cc", |
771 "strings/string_split.h", | 772 "strings/string_split.h", |
772 "strings/string_tokenizer.h", | 773 "strings/string_tokenizer.h", |
773 "strings/string_util.cc", | 774 "strings/string_util.cc", |
774 "strings/string_util.h", | 775 "strings/string_util.h", |
775 "strings/string_util_constants.cc", | 776 "strings/string_util_constants.cc", |
776 "strings/string_util_posix.h", | 777 "strings/string_util_posix.h", |
777 "strings/string_util_win.h", | 778 "strings/string_util_win.h", |
778 "strings/stringize_macros.h", | 779 "strings/stringize_macros.h", |
779 "strings/stringprintf.cc", | 780 "strings/stringprintf.cc", |
(...skipping 1887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2667 } | 2668 } |
2668 | 2669 |
2669 fuzzer_test("base_json_correctness_fuzzer") { | 2670 fuzzer_test("base_json_correctness_fuzzer") { |
2670 sources = [ | 2671 sources = [ |
2671 "json/correctness_fuzzer.cc", | 2672 "json/correctness_fuzzer.cc", |
2672 ] | 2673 ] |
2673 deps = [ | 2674 deps = [ |
2674 ":base", | 2675 ":base", |
2675 ] | 2676 ] |
2676 } | 2677 } |
OLD | NEW |