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

Side by Side Diff: base/BUILD.gn

Issue 2907473002: fuchsia: add base_paths_fuchsia.cc (Closed)
Patch Set: rebase Created 3 years, 7 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
« no previous file with comments | « no previous file | base/base_paths_fuchsia.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 "base_paths.h", 1099 "base_paths.h",
1100 "base_paths_android.cc", 1100 "base_paths_android.cc",
1101 "base_paths_android.h", 1101 "base_paths_android.h",
1102 "base_paths_mac.h", 1102 "base_paths_mac.h",
1103 "base_paths_mac.mm", 1103 "base_paths_mac.mm",
1104 "base_paths_posix.h", 1104 "base_paths_posix.h",
1105 "base_paths_win.cc", 1105 "base_paths_win.cc",
1106 "base_paths_win.h", 1106 "base_paths_win.h",
1107 ] 1107 ]
1108 1108
1109 if (is_linux || is_fuchsia) { 1109 if (is_linux) {
1110 sources += [ "base_paths_posix.cc" ] 1110 sources += [ "base_paths_posix.cc" ]
1111 } 1111 }
1112 } 1112 }
1113 1113
1114 if (!is_mac && is_posix) { 1114 if (!is_mac && is_posix) {
1115 sources += [ "memory/shared_memory_handle_posix.cc" ] 1115 sources += [ "memory/shared_memory_handle_posix.cc" ]
1116 } 1116 }
1117 1117
1118 all_dependent_configs = [] 1118 all_dependent_configs = []
1119 defines = [] 1119 defines = []
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 "debug/stack_trace_posix.cc", 1236 "debug/stack_trace_posix.cc",
1237 "message_loop/message_pump_libevent.cc", 1237 "message_loop/message_pump_libevent.cc",
1238 "message_loop/message_pump_libevent.h", 1238 "message_loop/message_pump_libevent.h",
1239 "process/kill_posix.cc", 1239 "process/kill_posix.cc",
1240 "process/launch_posix.cc", 1240 "process/launch_posix.cc",
1241 "process/process_handle_posix.cc", 1241 "process/process_handle_posix.cc",
1242 "process/process_posix.cc", 1242 "process/process_posix.cc",
1243 ] 1243 ]
1244 1244
1245 sources += [ 1245 sources += [
1246 "base_paths_fuchsia.cc",
1246 "debug/stack_trace_fuchsia.cc", 1247 "debug/stack_trace_fuchsia.cc",
1247 "process/launch_fuchsia.cc", 1248 "process/launch_fuchsia.cc",
1248 "process/process_fuchsia.cc", 1249 "process/process_fuchsia.cc",
1249 "process/process_handle_fuchsia.cc", 1250 "process/process_handle_fuchsia.cc",
1250 "sys_info_fuchsia.cc", 1251 "sys_info_fuchsia.cc",
1251 "threading/platform_thread_fuchsia.cc", 1252 "threading/platform_thread_fuchsia.cc",
1252 ] 1253 ]
1253 1254
1254 libs = [ "launchpad" ] 1255 libs = [ "launchpad" ]
1255 } 1256 }
(...skipping 1516 matching lines...) Expand 10 before | Expand all | Expand 10 after
2772 } 2773 }
2773 2774
2774 fuzzer_test("base_json_correctness_fuzzer") { 2775 fuzzer_test("base_json_correctness_fuzzer") {
2775 sources = [ 2776 sources = [
2776 "json/correctness_fuzzer.cc", 2777 "json/correctness_fuzzer.cc",
2777 ] 2778 ]
2778 deps = [ 2779 deps = [
2779 ":base", 2780 ":base",
2780 ] 2781 ]
2781 } 2782 }
OLDNEW
« no previous file with comments | « no previous file | base/base_paths_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698