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

Side by Side Diff: base/BUILD.gn

Issue 2555483002: Add POSIX shared memory support for Mac (Closed)
Patch Set: Restructure CreateAnonymousSharedMemory Created 4 years 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/memory/shared_memory.h » ('j') | base/memory/shared_memory_helper.cc » ('J')
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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 "memory/ref_counted_delete_on_message_loop.h", 505 "memory/ref_counted_delete_on_message_loop.h",
506 "memory/ref_counted_memory.cc", 506 "memory/ref_counted_memory.cc",
507 "memory/ref_counted_memory.h", 507 "memory/ref_counted_memory.h",
508 "memory/scoped_policy.h", 508 "memory/scoped_policy.h",
509 "memory/scoped_vector.h", 509 "memory/scoped_vector.h",
510 "memory/shared_memory.h", 510 "memory/shared_memory.h",
511 "memory/shared_memory_android.cc", 511 "memory/shared_memory_android.cc",
512 "memory/shared_memory_handle.h", 512 "memory/shared_memory_handle.h",
513 "memory/shared_memory_handle_mac.cc", 513 "memory/shared_memory_handle_mac.cc",
514 "memory/shared_memory_handle_win.cc", 514 "memory/shared_memory_handle_win.cc",
515 "memory/shared_memory_helper.cc",
516 "memory/shared_memory_helper.h",
515 "memory/shared_memory_mac.cc", 517 "memory/shared_memory_mac.cc",
516 "memory/shared_memory_nacl.cc", 518 "memory/shared_memory_nacl.cc",
517 "memory/shared_memory_posix.cc", 519 "memory/shared_memory_posix.cc",
518 "memory/shared_memory_win.cc", 520 "memory/shared_memory_win.cc",
519 "memory/singleton.cc", 521 "memory/singleton.cc",
520 "memory/singleton.h", 522 "memory/singleton.h",
521 "memory/weak_ptr.cc", 523 "memory/weak_ptr.cc",
522 "memory/weak_ptr.h", 524 "memory/weak_ptr.h",
523 "message_loop/incoming_task_queue.cc", 525 "message_loop/incoming_task_queue.cc",
524 "message_loop/incoming_task_queue.h", 526 "message_loop/incoming_task_queue.h",
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 "files/file_util_proxy.cc", 1161 "files/file_util_proxy.cc",
1160 "files/important_file_writer.cc", 1162 "files/important_file_writer.cc",
1161 "files/important_file_writer.h", 1163 "files/important_file_writer.h",
1162 "files/scoped_temp_dir.cc", 1164 "files/scoped_temp_dir.cc",
1163 "memory/discardable_memory.cc", 1165 "memory/discardable_memory.cc",
1164 "memory/discardable_memory.h", 1166 "memory/discardable_memory.h",
1165 "memory/discardable_memory_allocator.cc", 1167 "memory/discardable_memory_allocator.cc",
1166 "memory/discardable_memory_allocator.h", 1168 "memory/discardable_memory_allocator.h",
1167 "memory/discardable_shared_memory.cc", 1169 "memory/discardable_shared_memory.cc",
1168 "memory/discardable_shared_memory.h", 1170 "memory/discardable_shared_memory.h",
1171 "memory/shared_memory_helper.cc",
1172 "memory/shared_memory_helper.h",
1169 "memory/shared_memory_posix.cc", 1173 "memory/shared_memory_posix.cc",
1170 "native_library.cc", 1174 "native_library.cc",
1171 "native_library_posix.cc", 1175 "native_library_posix.cc",
1172 "path_service.cc", 1176 "path_service.cc",
1173 "process/kill.cc", 1177 "process/kill.cc",
1174 "process/kill.h", 1178 "process/kill.h",
1175 "process/memory.cc", 1179 "process/memory.cc",
1176 "process/memory.h", 1180 "process/memory.h",
1177 "process/process_iterator.cc", 1181 "process/process_iterator.cc",
1178 "process/process_iterator.h", 1182 "process/process_iterator.h",
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1237 1241
1238 # Windows. 1242 # Windows.
1239 if (is_win) { 1243 if (is_win) {
1240 sources += [ 1244 sources += [
1241 "power_monitor/power_monitor_device_source_win.cc", 1245 "power_monitor/power_monitor_device_source_win.cc",
1242 "profiler/win32_stack_frame_unwinder.cc", 1246 "profiler/win32_stack_frame_unwinder.cc",
1243 "profiler/win32_stack_frame_unwinder.h", 1247 "profiler/win32_stack_frame_unwinder.h",
1244 ] 1248 ]
1245 1249
1246 sources -= [ 1250 sources -= [
1251 "memory/shared_memory_helper.cc",
1252 "memory/shared_memory_helper.h",
1247 "message_loop/message_pump_libevent.cc", 1253 "message_loop/message_pump_libevent.cc",
1248 "strings/string16.cc", 1254 "strings/string16.cc",
1249 ] 1255 ]
1250 1256
1251 deps += [ 1257 deps += [
1252 "//base/trace_event/etw_manifest:chrome_events_win", 1258 "//base/trace_event/etw_manifest:chrome_events_win",
1253 "//base/win:base_win_features", 1259 "//base/win:base_win_features",
1254 "//base/win:eventlog_messages", 1260 "//base/win:eventlog_messages",
1255 ] 1261 ]
1256 1262
(...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after
2527 } 2533 }
2528 2534
2529 fuzzer_test("base_json_correctness_fuzzer") { 2535 fuzzer_test("base_json_correctness_fuzzer") {
2530 sources = [ 2536 sources = [
2531 "json/correctness_fuzzer.cc", 2537 "json/correctness_fuzzer.cc",
2532 ] 2538 ]
2533 deps = [ 2539 deps = [
2534 ":base", 2540 ":base",
2535 ] 2541 ]
2536 } 2542 }
OLDNEW
« no previous file with comments | « no previous file | base/memory/shared_memory.h » ('j') | base/memory/shared_memory_helper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698