| 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 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1187 set_sources_assignment_filter([]) | 1187 set_sources_assignment_filter([]) |
| 1188 sources += [ | 1188 sources += [ |
| 1189 "debug/proc_maps_linux.cc", | 1189 "debug/proc_maps_linux.cc", |
| 1190 "files/file_path_watcher_linux.cc", | 1190 "files/file_path_watcher_linux.cc", |
| 1191 "posix/unix_domain_socket_linux.cc", | 1191 "posix/unix_domain_socket_linux.cc", |
| 1192 "power_monitor/power_monitor_device_source_android.cc", | 1192 "power_monitor/power_monitor_device_source_android.cc", |
| 1193 "power_monitor/power_monitor_device_source_android.h", | 1193 "power_monitor/power_monitor_device_source_android.h", |
| 1194 "process/internal_linux.cc", | 1194 "process/internal_linux.cc", |
| 1195 "process/memory_linux.cc", | 1195 "process/memory_linux.cc", |
| 1196 "process/process_handle_linux.cc", | 1196 "process/process_handle_linux.cc", |
| 1197 "process/process_info_linux.cc", | |
| 1198 "process/process_iterator_linux.cc", | 1197 "process/process_iterator_linux.cc", |
| 1199 "process/process_metrics_linux.cc", | 1198 "process/process_metrics_linux.cc", |
| 1200 "sys_info_linux.cc", | 1199 "sys_info_linux.cc", |
| 1201 ] | 1200 ] |
| 1202 set_sources_assignment_filter(sources_assignment_filter) | 1201 set_sources_assignment_filter(sources_assignment_filter) |
| 1203 | 1202 |
| 1204 deps += [ | 1203 deps += [ |
| 1205 ":base_jni_headers", | 1204 ":base_jni_headers", |
| 1206 "//third_party/android_tools:cpu_features", | 1205 "//third_party/android_tools:cpu_features", |
| 1207 "//third_party/ashmem", | 1206 "//third_party/ashmem", |
| (...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2043 "os_compat_android_unittest.cc", | 2042 "os_compat_android_unittest.cc", |
| 2044 "path_service_unittest.cc", | 2043 "path_service_unittest.cc", |
| 2045 "pending_task_unittest.cc", | 2044 "pending_task_unittest.cc", |
| 2046 "pickle_unittest.cc", | 2045 "pickle_unittest.cc", |
| 2047 "posix/file_descriptor_shuffle_unittest.cc", | 2046 "posix/file_descriptor_shuffle_unittest.cc", |
| 2048 "posix/unix_domain_socket_linux_unittest.cc", | 2047 "posix/unix_domain_socket_linux_unittest.cc", |
| 2049 "power_monitor/power_monitor_unittest.cc", | 2048 "power_monitor/power_monitor_unittest.cc", |
| 2050 "process/memory_unittest.cc", | 2049 "process/memory_unittest.cc", |
| 2051 "process/memory_unittest_mac.h", | 2050 "process/memory_unittest_mac.h", |
| 2052 "process/memory_unittest_mac.mm", | 2051 "process/memory_unittest_mac.mm", |
| 2053 "process/process_info_unittest.cc", | |
| 2054 "process/process_metrics_unittest.cc", | 2052 "process/process_metrics_unittest.cc", |
| 2055 "process/process_metrics_unittest_ios.cc", | 2053 "process/process_metrics_unittest_ios.cc", |
| 2056 "process/process_unittest.cc", | 2054 "process/process_unittest.cc", |
| 2057 "process/process_util_unittest.cc", | 2055 "process/process_util_unittest.cc", |
| 2058 "profiler/stack_sampling_profiler_unittest.cc", | 2056 "profiler/stack_sampling_profiler_unittest.cc", |
| 2059 "profiler/tracked_time_unittest.cc", | 2057 "profiler/tracked_time_unittest.cc", |
| 2060 "rand_util_unittest.cc", | 2058 "rand_util_unittest.cc", |
| 2061 "run_loop_unittest.cc", | 2059 "run_loop_unittest.cc", |
| 2062 "scoped_clear_errno_unittest.cc", | 2060 "scoped_clear_errno_unittest.cc", |
| 2063 "scoped_generic_unittest.cc", | 2061 "scoped_generic_unittest.cc", |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2669 } | 2667 } |
| 2670 | 2668 |
| 2671 fuzzer_test("base_json_correctness_fuzzer") { | 2669 fuzzer_test("base_json_correctness_fuzzer") { |
| 2672 sources = [ | 2670 sources = [ |
| 2673 "json/correctness_fuzzer.cc", | 2671 "json/correctness_fuzzer.cc", |
| 2674 ] | 2672 ] |
| 2675 deps = [ | 2673 deps = [ |
| 2676 ":base", | 2674 ":base", |
| 2677 ] | 2675 ] |
| 2678 } | 2676 } |
| OLD | NEW |