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", |
1197 "process/process_iterator_linux.cc", | 1198 "process/process_iterator_linux.cc", |
1198 "process/process_metrics_linux.cc", | 1199 "process/process_metrics_linux.cc", |
1199 "sys_info_linux.cc", | 1200 "sys_info_linux.cc", |
1200 ] | 1201 ] |
1201 set_sources_assignment_filter(sources_assignment_filter) | 1202 set_sources_assignment_filter(sources_assignment_filter) |
1202 | 1203 |
1203 deps += [ | 1204 deps += [ |
1204 ":base_jni_headers", | 1205 ":base_jni_headers", |
1205 "//third_party/android_tools:cpu_features", | 1206 "//third_party/android_tools:cpu_features", |
1206 "//third_party/ashmem", | 1207 "//third_party/ashmem", |
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2667 } | 2668 } |
2668 | 2669 |
2669 fuzzer_test("base_json_correctness_fuzzer") { | 2670 fuzzer_test("base_json_correctness_fuzzer") { |
2670 sources = [ | 2671 sources = [ |
2671 "json/correctness_fuzzer.cc", | 2672 "json/correctness_fuzzer.cc", |
2672 ] | 2673 ] |
2673 deps = [ | 2674 deps = [ |
2674 ":base", | 2675 ":base", |
2675 ] | 2676 ] |
2676 } | 2677 } |
OLD | NEW |