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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 "strings/pattern.cc", | 734 "strings/pattern.cc", |
735 "strings/pattern.h", | 735 "strings/pattern.h", |
736 "strings/safe_sprintf.cc", | 736 "strings/safe_sprintf.cc", |
737 "strings/safe_sprintf.h", | 737 "strings/safe_sprintf.h", |
738 "strings/string16.cc", | 738 "strings/string16.cc", |
739 "strings/string16.h", | 739 "strings/string16.h", |
740 "strings/string_number_conversions.cc", | 740 "strings/string_number_conversions.cc", |
741 "strings/string_number_conversions.h", | 741 "strings/string_number_conversions.h", |
742 "strings/string_piece.cc", | 742 "strings/string_piece.cc", |
743 "strings/string_piece.h", | 743 "strings/string_piece.h", |
| 744 "strings/string_piece_forward.h", |
744 "strings/string_split.cc", | 745 "strings/string_split.cc", |
745 "strings/string_split.h", | 746 "strings/string_split.h", |
746 "strings/string_tokenizer.h", | 747 "strings/string_tokenizer.h", |
747 "strings/string_util.cc", | 748 "strings/string_util.cc", |
748 "strings/string_util.h", | 749 "strings/string_util.h", |
749 "strings/string_util_constants.cc", | 750 "strings/string_util_constants.cc", |
750 "strings/string_util_posix.h", | 751 "strings/string_util_posix.h", |
751 "strings/string_util_win.h", | 752 "strings/string_util_win.h", |
752 "strings/stringize_macros.h", | 753 "strings/stringize_macros.h", |
753 "strings/stringprintf.cc", | 754 "strings/stringprintf.cc", |
(...skipping 1934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2688 } | 2689 } |
2689 | 2690 |
2690 fuzzer_test("base_json_correctness_fuzzer") { | 2691 fuzzer_test("base_json_correctness_fuzzer") { |
2691 sources = [ | 2692 sources = [ |
2692 "json/correctness_fuzzer.cc", | 2693 "json/correctness_fuzzer.cc", |
2693 ] | 2694 ] |
2694 deps = [ | 2695 deps = [ |
2695 ":base", | 2696 ":base", |
2696 ] | 2697 ] |
2697 } | 2698 } |
OLD | NEW |