| 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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 "sequence_checker_impl.cc", | 693 "sequence_checker_impl.cc", |
| 694 "sequence_checker_impl.h", | 694 "sequence_checker_impl.h", |
| 695 "sequence_token.cc", | 695 "sequence_token.cc", |
| 696 "sequence_token.h", | 696 "sequence_token.h", |
| 697 "sequenced_task_runner.cc", | 697 "sequenced_task_runner.cc", |
| 698 "sequenced_task_runner.h", | 698 "sequenced_task_runner.h", |
| 699 "sequenced_task_runner_helpers.h", | 699 "sequenced_task_runner_helpers.h", |
| 700 "sha1.cc", | 700 "sha1.cc", |
| 701 "sha1.h", | 701 "sha1.h", |
| 702 "single_thread_task_runner.h", | 702 "single_thread_task_runner.h", |
| 703 "spin_lock.cc", |
| 704 "spin_lock.h", |
| 703 "stl_util.h", | 705 "stl_util.h", |
| 704 "strings/latin1_string_conversions.cc", | 706 "strings/latin1_string_conversions.cc", |
| 705 "strings/latin1_string_conversions.h", | 707 "strings/latin1_string_conversions.h", |
| 706 "strings/nullable_string16.cc", | 708 "strings/nullable_string16.cc", |
| 707 "strings/nullable_string16.h", | 709 "strings/nullable_string16.h", |
| 708 "strings/pattern.cc", | 710 "strings/pattern.cc", |
| 709 "strings/pattern.h", | 711 "strings/pattern.h", |
| 710 "strings/safe_sprintf.cc", | 712 "strings/safe_sprintf.cc", |
| 711 "strings/safe_sprintf.h", | 713 "strings/safe_sprintf.h", |
| 712 "strings/string16.cc", | 714 "strings/string16.cc", |
| (...skipping 1756 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2469 } | 2471 } |
| 2470 | 2472 |
| 2471 fuzzer_test("base_json_correctness_fuzzer") { | 2473 fuzzer_test("base_json_correctness_fuzzer") { |
| 2472 sources = [ | 2474 sources = [ |
| 2473 "json/correctness_fuzzer.cc", | 2475 "json/correctness_fuzzer.cc", |
| 2474 ] | 2476 ] |
| 2475 deps = [ | 2477 deps = [ |
| 2476 ":base", | 2478 ":base", |
| 2477 ] | 2479 ] |
| 2478 } | 2480 } |
| OLD | NEW |