| 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 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 "process/process_handle_linux.cc", | 1196 "process/process_handle_linux.cc", |
| 1197 "process/process_iterator_linux.cc", | 1197 "process/process_iterator_linux.cc", |
| 1198 "process/process_metrics_linux.cc", | 1198 "process/process_metrics_linux.cc", |
| 1199 "sys_info_linux.cc", | 1199 "sys_info_linux.cc", |
| 1200 ] | 1200 ] |
| 1201 set_sources_assignment_filter(sources_assignment_filter) | 1201 set_sources_assignment_filter(sources_assignment_filter) |
| 1202 | 1202 |
| 1203 deps += [ | 1203 deps += [ |
| 1204 ":base_jni_headers", | 1204 ":base_jni_headers", |
| 1205 "//third_party/android_tools:cpu_features", | 1205 "//third_party/android_tools:cpu_features", |
| 1206 "//third_party/android_tools:libc++", |
| 1206 "//third_party/ashmem", | 1207 "//third_party/ashmem", |
| 1207 ] | 1208 ] |
| 1208 | 1209 |
| 1209 # Needs to be a public config so that dependent targets link against it as | 1210 # Needs to be a public config so that dependent targets link against it as |
| 1210 # well when doing a component build. | 1211 # well when doing a component build. |
| 1211 public_configs = [ ":android_system_libs" ] | 1212 public_configs = [ ":android_system_libs" ] |
| 1212 } | 1213 } |
| 1213 | 1214 |
| 1214 # Chromeos. | 1215 # Chromeos. |
| 1215 if (is_chromeos) { | 1216 if (is_chromeos) { |
| (...skipping 1451 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 |