Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Side by Side Diff: base/BUILD.gn

Issue 2807463004: GN: aix port along with linux_s390x, linux_ppc64 and linux_ppc64le support. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/ashmem", 1206 "//third_party/ashmem",
1207 ] 1207 ]
1208 1208
1209 # Needs to be a public config so that dependent targets link against it as 1209 # Needs to be a public config so that dependent targets link against it as
1210 # well when doing a component build. 1210 # well when doing a component build.
1211 public_configs = [ ":android_system_libs" ] 1211 public_configs = [ ":android_system_libs" ]
1212 } 1212 }
1213 1213
1214 # AIX
1215 if (is_aix) {
1216 sources += [
1217 "base/process/internal_aix.cc",
1218 "base/process/internal_aix.h",
1219 ]
1220 }
1221
1214 # Chromeos. 1222 # Chromeos.
1215 if (is_chromeos) { 1223 if (is_chromeos) {
1216 sources += [ "power_monitor/power_monitor_device_source_chromeos.cc" ] 1224 sources += [ "power_monitor/power_monitor_device_source_chromeos.cc" ]
1217 } 1225 }
1218 1226
1219 # NaCl. 1227 # NaCl.
1220 if (is_nacl) { 1228 if (is_nacl) {
1221 # We reset sources_assignment_filter in order to explicitly include 1229 # We reset sources_assignment_filter in order to explicitly include
1222 # the linux file (which would otherwise be filtered out). 1230 # the linux file (which would otherwise be filtered out).
1223 set_sources_assignment_filter([]) 1231 set_sources_assignment_filter([])
(...skipping 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
2686 } 2694 }
2687 2695
2688 fuzzer_test("base_json_correctness_fuzzer") { 2696 fuzzer_test("base_json_correctness_fuzzer") {
2689 sources = [ 2697 sources = [
2690 "json/correctness_fuzzer.cc", 2698 "json/correctness_fuzzer.cc",
2691 ] 2699 ]
2692 deps = [ 2700 deps = [
2693 ":base", 2701 ":base",
2694 ] 2702 ]
2695 } 2703 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698