| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 "pickle.cc", | 609 "pickle.cc", |
| 610 "pickle.h", | 610 "pickle.h", |
| 611 "posix/eintr_wrapper.h", | 611 "posix/eintr_wrapper.h", |
| 612 "posix/file_descriptor_shuffle.cc", | 612 "posix/file_descriptor_shuffle.cc", |
| 613 "posix/global_descriptors.cc", | 613 "posix/global_descriptors.cc", |
| 614 "posix/global_descriptors.h", | 614 "posix/global_descriptors.h", |
| 615 "posix/safe_strerror.cc", | 615 "posix/safe_strerror.cc", |
| 616 "posix/safe_strerror.h", | 616 "posix/safe_strerror.h", |
| 617 "posix/unix_domain_socket_linux.cc", | 617 "posix/unix_domain_socket_linux.cc", |
| 618 "posix/unix_domain_socket_linux.h", | 618 "posix/unix_domain_socket_linux.h", |
| 619 "post_task_and_reply_with_result_internal.h", |
| 619 "power_monitor/power_monitor.cc", | 620 "power_monitor/power_monitor.cc", |
| 620 "power_monitor/power_monitor.h", | 621 "power_monitor/power_monitor.h", |
| 621 "power_monitor/power_monitor_device_source.cc", | 622 "power_monitor/power_monitor_device_source.cc", |
| 622 "power_monitor/power_monitor_device_source.h", | 623 "power_monitor/power_monitor_device_source.h", |
| 623 "power_monitor/power_monitor_source.cc", | 624 "power_monitor/power_monitor_source.cc", |
| 624 "power_monitor/power_monitor_source.h", | 625 "power_monitor/power_monitor_source.h", |
| 625 "power_monitor/power_observer.h", | 626 "power_monitor/power_observer.h", |
| 626 "process/internal_linux.cc", | 627 "process/internal_linux.cc", |
| 627 "process/internal_linux.h", | 628 "process/internal_linux.h", |
| 628 "process/kill.cc", | 629 "process/kill.cc", |
| (...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2525 } | 2526 } |
| 2526 | 2527 |
| 2527 fuzzer_test("base_json_correctness_fuzzer") { | 2528 fuzzer_test("base_json_correctness_fuzzer") { |
| 2528 sources = [ | 2529 sources = [ |
| 2529 "json/correctness_fuzzer.cc", | 2530 "json/correctness_fuzzer.cc", |
| 2530 ] | 2531 ] |
| 2531 deps = [ | 2532 deps = [ |
| 2532 ":base", | 2533 ":base", |
| 2533 ] | 2534 ] |
| 2534 } | 2535 } |
| OLD | NEW |