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

Side by Side Diff: base/BUILD.gn

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

Powered by Google App Engine
This is Rietveld 408576698