| 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 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1189 set_sources_assignment_filter([]) | 1189 set_sources_assignment_filter([]) |
| 1190 sources += [ | 1190 sources += [ |
| 1191 "debug/proc_maps_linux.cc", | 1191 "debug/proc_maps_linux.cc", |
| 1192 "files/file_path_watcher_linux.cc", | 1192 "files/file_path_watcher_linux.cc", |
| 1193 "posix/unix_domain_socket_linux.cc", | 1193 "posix/unix_domain_socket_linux.cc", |
| 1194 "power_monitor/power_monitor_device_source_android.cc", | 1194 "power_monitor/power_monitor_device_source_android.cc", |
| 1195 "power_monitor/power_monitor_device_source_android.h", | 1195 "power_monitor/power_monitor_device_source_android.h", |
| 1196 "process/internal_linux.cc", | 1196 "process/internal_linux.cc", |
| 1197 "process/memory_linux.cc", | 1197 "process/memory_linux.cc", |
| 1198 "process/process_handle_linux.cc", | 1198 "process/process_handle_linux.cc", |
| 1199 "process/process_info_linux.cc", |
| 1199 "process/process_iterator_linux.cc", | 1200 "process/process_iterator_linux.cc", |
| 1200 "process/process_metrics_linux.cc", | 1201 "process/process_metrics_linux.cc", |
| 1201 "sys_info_linux.cc", | 1202 "sys_info_linux.cc", |
| 1202 ] | 1203 ] |
| 1203 set_sources_assignment_filter(sources_assignment_filter) | 1204 set_sources_assignment_filter(sources_assignment_filter) |
| 1204 | 1205 |
| 1205 deps += [ | 1206 deps += [ |
| 1206 ":base_jni_headers", | 1207 ":base_jni_headers", |
| 1207 "//third_party/android_tools:cpu_features", | 1208 "//third_party/android_tools:cpu_features", |
| 1208 "//third_party/ashmem", | 1209 "//third_party/ashmem", |
| (...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2047 "os_compat_android_unittest.cc", | 2048 "os_compat_android_unittest.cc", |
| 2048 "path_service_unittest.cc", | 2049 "path_service_unittest.cc", |
| 2049 "pending_task_unittest.cc", | 2050 "pending_task_unittest.cc", |
| 2050 "pickle_unittest.cc", | 2051 "pickle_unittest.cc", |
| 2051 "posix/file_descriptor_shuffle_unittest.cc", | 2052 "posix/file_descriptor_shuffle_unittest.cc", |
| 2052 "posix/unix_domain_socket_linux_unittest.cc", | 2053 "posix/unix_domain_socket_linux_unittest.cc", |
| 2053 "power_monitor/power_monitor_unittest.cc", | 2054 "power_monitor/power_monitor_unittest.cc", |
| 2054 "process/memory_unittest.cc", | 2055 "process/memory_unittest.cc", |
| 2055 "process/memory_unittest_mac.h", | 2056 "process/memory_unittest_mac.h", |
| 2056 "process/memory_unittest_mac.mm", | 2057 "process/memory_unittest_mac.mm", |
| 2058 "process/process_info_unittest.cc", |
| 2057 "process/process_metrics_unittest.cc", | 2059 "process/process_metrics_unittest.cc", |
| 2058 "process/process_metrics_unittest_ios.cc", | 2060 "process/process_metrics_unittest_ios.cc", |
| 2059 "process/process_unittest.cc", | 2061 "process/process_unittest.cc", |
| 2060 "process/process_util_unittest.cc", | 2062 "process/process_util_unittest.cc", |
| 2061 "profiler/stack_sampling_profiler_unittest.cc", | 2063 "profiler/stack_sampling_profiler_unittest.cc", |
| 2062 "profiler/tracked_time_unittest.cc", | 2064 "profiler/tracked_time_unittest.cc", |
| 2063 "rand_util_unittest.cc", | 2065 "rand_util_unittest.cc", |
| 2064 "run_loop_unittest.cc", | 2066 "run_loop_unittest.cc", |
| 2065 "scoped_clear_errno_unittest.cc", | 2067 "scoped_clear_errno_unittest.cc", |
| 2066 "scoped_generic_unittest.cc", | 2068 "scoped_generic_unittest.cc", |
| (...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2674 } | 2676 } |
| 2675 | 2677 |
| 2676 fuzzer_test("base_json_correctness_fuzzer") { | 2678 fuzzer_test("base_json_correctness_fuzzer") { |
| 2677 sources = [ | 2679 sources = [ |
| 2678 "json/correctness_fuzzer.cc", | 2680 "json/correctness_fuzzer.cc", |
| 2679 ] | 2681 ] |
| 2680 deps = [ | 2682 deps = [ |
| 2681 ":base", | 2683 ":base", |
| 2682 ] | 2684 ] |
| 2683 } | 2685 } |
| OLD | NEW |