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 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1205 ":base_jni_headers", | 1205 ":base_jni_headers", |
1206 "//third_party/android_tools:cpu_features", | 1206 "//third_party/android_tools:cpu_features", |
1207 "//third_party/ashmem", | 1207 "//third_party/ashmem", |
1208 ] | 1208 ] |
1209 | 1209 |
1210 # 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 |
1211 # well when doing a component build. | 1211 # well when doing a component build. |
1212 public_configs = [ ":android_system_libs" ] | 1212 public_configs = [ ":android_system_libs" ] |
1213 } | 1213 } |
1214 | 1214 |
| 1215 # AIX |
| 1216 if (is_aix) { |
| 1217 sources += [ |
| 1218 "base/process/internal_aix.cc", |
| 1219 "base/process/internal_aix.h", |
| 1220 ] |
| 1221 } |
| 1222 |
1215 # Chromeos. | 1223 # Chromeos. |
1216 if (is_chromeos) { | 1224 if (is_chromeos) { |
1217 sources += [ "power_monitor/power_monitor_device_source_chromeos.cc" ] | 1225 sources += [ "power_monitor/power_monitor_device_source_chromeos.cc" ] |
1218 } | 1226 } |
1219 | 1227 |
1220 # NaCl. | 1228 # NaCl. |
1221 if (is_nacl) { | 1229 if (is_nacl) { |
1222 # We reset sources_assignment_filter in order to explicitly include | 1230 # We reset sources_assignment_filter in order to explicitly include |
1223 # the linux file (which would otherwise be filtered out). | 1231 # the linux file (which would otherwise be filtered out). |
1224 set_sources_assignment_filter([]) | 1232 set_sources_assignment_filter([]) |
(...skipping 1468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2693 } | 2701 } |
2694 | 2702 |
2695 fuzzer_test("base_json_correctness_fuzzer") { | 2703 fuzzer_test("base_json_correctness_fuzzer") { |
2696 sources = [ | 2704 sources = [ |
2697 "json/correctness_fuzzer.cc", | 2705 "json/correctness_fuzzer.cc", |
2698 ] | 2706 ] |
2699 deps = [ | 2707 deps = [ |
2700 ":base", | 2708 ":base", |
2701 ] | 2709 ] |
2702 } | 2710 } |
OLD | NEW |