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

Side by Side Diff: base/base.gypi

Issue 1163943004: Make SharedMemoryHandle a class on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shared_memory_make_class3_base
Patch Set: Remove more unused headers that magically appeared from rebase. Created 5 years, 6 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/memory/BUILD.gn » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'includes': [ 6 'includes': [
7 'trace_event/trace_event.gypi', 7 'trace_event/trace_event.gypi',
8 ], 8 ],
9 'target_defaults': { 9 'target_defaults': {
10 'variables': { 10 'variables': {
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 'memory/ref_counted.cc', 351 'memory/ref_counted.cc',
352 'memory/ref_counted.h', 352 'memory/ref_counted.h',
353 'memory/ref_counted_delete_on_message_loop.h', 353 'memory/ref_counted_delete_on_message_loop.h',
354 'memory/ref_counted_memory.cc', 354 'memory/ref_counted_memory.cc',
355 'memory/ref_counted_memory.h', 355 'memory/ref_counted_memory.h',
356 'memory/scoped_policy.h', 356 'memory/scoped_policy.h',
357 'memory/scoped_ptr.h', 357 'memory/scoped_ptr.h',
358 'memory/scoped_vector.h', 358 'memory/scoped_vector.h',
359 'memory/shared_memory.h', 359 'memory/shared_memory.h',
360 'memory/shared_memory_android.cc', 360 'memory/shared_memory_android.cc',
361 'memory/shared_memory_handle.h',
362 'memory/shared_memory_handle_mac.cc',
363 'memory/shared_memory_mac.cc',
361 'memory/shared_memory_nacl.cc', 364 'memory/shared_memory_nacl.cc',
362 'memory/shared_memory_posix.cc', 365 'memory/shared_memory_posix.cc',
363 'memory/shared_memory_win.cc', 366 'memory/shared_memory_win.cc',
364 'memory/singleton.cc', 367 'memory/singleton.cc',
365 'memory/singleton.h', 368 'memory/singleton.h',
366 'memory/weak_ptr.cc', 369 'memory/weak_ptr.cc',
367 'memory/weak_ptr.h', 370 'memory/weak_ptr.h',
368 'message_loop/incoming_task_queue.cc', 371 'message_loop/incoming_task_queue.cc',
369 'message_loop/incoming_task_queue.h', 372 'message_loop/incoming_task_queue.h',
370 'message_loop/message_loop.cc', 373 'message_loop/message_loop.cc',
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 'defines': [ 756 'defines': [
754 'BASE_IMPLEMENTATION', 757 'BASE_IMPLEMENTATION',
755 ], 758 ],
756 'include_dirs': [ 759 'include_dirs': [
757 '..', 760 '..',
758 ], 761 ],
759 'msvs_disabled_warnings': [ 762 'msvs_disabled_warnings': [
760 4018, 763 4018,
761 ], 764 ],
762 'target_conditions': [ 765 'target_conditions': [
766 ['OS == "mac"', {
767 'sources!': [
768 'memory/shared_memory_posix.cc',
769 ],
770 }],
763 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui ld)==1', { 771 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui ld)==1', {
764 'sources/': [ 772 'sources/': [
765 ['exclude', '^nix/'], 773 ['exclude', '^nix/'],
766 ], 774 ],
767 'sources!': [ 775 'sources!': [
768 'atomicops_internals_x86_gcc.cc', 776 'atomicops_internals_x86_gcc.cc',
769 ], 777 ],
770 }], 778 }],
771 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { 779 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', {
772 'sources!': [ 780 'sources!': [
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 'i18n/time_formatting.h', 1035 'i18n/time_formatting.h',
1028 'i18n/timezone.cc', 1036 'i18n/timezone.cc',
1029 'i18n/timezone.h', 1037 'i18n/timezone.h',
1030 'i18n/utf8_validator_tables.cc', 1038 'i18n/utf8_validator_tables.cc',
1031 'i18n/utf8_validator_tables.h', 1039 'i18n/utf8_validator_tables.h',
1032 ], 1040 ],
1033 }] 1041 }]
1034 ], 1042 ],
1035 }, 1043 },
1036 } 1044 }
OLDNEW
« no previous file with comments | « no previous file | base/memory/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698