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

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: rebased, cleaned up the code, addressed comments 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 1194 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after
2695 } 2703 }
2696 2704
2697 fuzzer_test("base_json_correctness_fuzzer") { 2705 fuzzer_test("base_json_correctness_fuzzer") {
2698 sources = [ 2706 sources = [
2699 "json/correctness_fuzzer.cc", 2707 "json/correctness_fuzzer.cc",
2700 ] 2708 ]
2701 deps = [ 2709 deps = [
2702 ":base", 2710 ":base",
2703 ] 2711 ]
2704 } 2712 }
OLDNEW
« no previous file with comments | « PRESUBMIT.py ('k') | base/base_paths_posix.cc » ('j') | base/memory/shared_memory_posix.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698