OLD | NEW |
---|---|
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 Loading... | |
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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
756 'defines': [ | 759 'defines': [ |
757 'BASE_IMPLEMENTATION', | 760 'BASE_IMPLEMENTATION', |
758 ], | 761 ], |
759 'include_dirs': [ | 762 'include_dirs': [ |
760 '..', | 763 '..', |
761 ], | 764 ], |
762 'msvs_disabled_warnings': [ | 765 'msvs_disabled_warnings': [ |
763 4018, | 766 4018, |
764 ], | 767 ], |
765 'target_conditions': [ | 768 'target_conditions': [ |
769 ['OS == "mac"', { | |
770 'sources!': [ | |
771 'memory/shared_memory_posix.cc', | |
Nico
2015/06/17 04:03:20
should probably be renamed to shared_memory_linux.
erikchen
2015/06/17 17:38:55
I thought that Android is considered posix but not
Nico
2015/06/17 17:42:51
Right you are. Nevermind.
| |
772 ], | |
773 }], | |
766 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui ld)==1', { | 774 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui ld)==1', { |
767 'sources/': [ | 775 'sources/': [ |
768 ['exclude', '^nix/'], | 776 ['exclude', '^nix/'], |
769 ], | 777 ], |
770 'sources!': [ | 778 'sources!': [ |
771 'atomicops_internals_x86_gcc.cc', | 779 'atomicops_internals_x86_gcc.cc', |
772 ], | 780 ], |
773 }], | 781 }], |
774 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { | 782 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { |
775 'sources!': [ | 783 'sources!': [ |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1030 'i18n/time_formatting.h', | 1038 'i18n/time_formatting.h', |
1031 'i18n/timezone.cc', | 1039 'i18n/timezone.cc', |
1032 'i18n/timezone.h', | 1040 'i18n/timezone.h', |
1033 'i18n/utf8_validator_tables.cc', | 1041 'i18n/utf8_validator_tables.cc', |
1034 'i18n/utf8_validator_tables.h', | 1042 'i18n/utf8_validator_tables.h', |
1035 ], | 1043 ], |
1036 }] | 1044 }] |
1037 ], | 1045 ], |
1038 }, | 1046 }, |
1039 } | 1047 } |
OLD | NEW |