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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 'memory/ref_counted.cc', | 350 'memory/ref_counted.cc', |
351 'memory/ref_counted.h', | 351 'memory/ref_counted.h', |
352 'memory/ref_counted_delete_on_message_loop.h', | 352 'memory/ref_counted_delete_on_message_loop.h', |
353 'memory/ref_counted_memory.cc', | 353 'memory/ref_counted_memory.cc', |
354 'memory/ref_counted_memory.h', | 354 'memory/ref_counted_memory.h', |
355 'memory/scoped_policy.h', | 355 'memory/scoped_policy.h', |
356 'memory/scoped_ptr.h', | 356 'memory/scoped_ptr.h', |
357 'memory/scoped_vector.h', | 357 'memory/scoped_vector.h', |
358 'memory/shared_memory.h', | 358 'memory/shared_memory.h', |
359 'memory/shared_memory_android.cc', | 359 'memory/shared_memory_android.cc', |
| 360 'memory/shared_memory_handle.h', |
| 361 'memory/shared_memory_handle_mac.cc', |
| 362 'memory/shared_memory_mac.cc', |
360 'memory/shared_memory_nacl.cc', | 363 'memory/shared_memory_nacl.cc', |
361 'memory/shared_memory_posix.cc', | 364 'memory/shared_memory_posix.cc', |
362 'memory/shared_memory_win.cc', | 365 'memory/shared_memory_win.cc', |
363 'memory/singleton.cc', | 366 'memory/singleton.cc', |
364 'memory/singleton.h', | 367 'memory/singleton.h', |
365 'memory/weak_ptr.cc', | 368 'memory/weak_ptr.cc', |
366 'memory/weak_ptr.h', | 369 'memory/weak_ptr.h', |
367 'message_loop/incoming_task_queue.cc', | 370 'message_loop/incoming_task_queue.cc', |
368 'message_loop/incoming_task_queue.h', | 371 'message_loop/incoming_task_queue.h', |
369 'message_loop/message_loop.cc', | 372 'message_loop/message_loop.cc', |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 'defines': [ | 758 'defines': [ |
756 'BASE_IMPLEMENTATION', | 759 'BASE_IMPLEMENTATION', |
757 ], | 760 ], |
758 'include_dirs': [ | 761 'include_dirs': [ |
759 '..', | 762 '..', |
760 ], | 763 ], |
761 'msvs_disabled_warnings': [ | 764 'msvs_disabled_warnings': [ |
762 4018, | 765 4018, |
763 ], | 766 ], |
764 'target_conditions': [ | 767 'target_conditions': [ |
| 768 ['OS == "mac"', { |
| 769 'sources!': [ |
| 770 'memory/shared_memory_posix.cc', |
| 771 ], |
| 772 }], |
765 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui
ld)==1', { | 773 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui
ld)==1', { |
766 'sources/': [ | 774 'sources/': [ |
767 ['exclude', '^nix/'], | 775 ['exclude', '^nix/'], |
768 ], | 776 ], |
769 'sources!': [ | 777 'sources!': [ |
770 'atomicops_internals_x86_gcc.cc', | 778 'atomicops_internals_x86_gcc.cc', |
771 ], | 779 ], |
772 }], | 780 }], |
773 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { | 781 ['<(use_glib)==0 or >(nacl_untrusted_build)==1', { |
774 'sources!': [ | 782 'sources!': [ |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1029 'i18n/time_formatting.h', | 1037 'i18n/time_formatting.h', |
1030 'i18n/timezone.cc', | 1038 'i18n/timezone.cc', |
1031 'i18n/timezone.h', | 1039 'i18n/timezone.h', |
1032 'i18n/utf8_validator_tables.cc', | 1040 'i18n/utf8_validator_tables.cc', |
1033 'i18n/utf8_validator_tables.h', | 1041 'i18n/utf8_validator_tables.h', |
1034 ], | 1042 ], |
1035 }] | 1043 }] |
1036 ], | 1044 ], |
1037 }, | 1045 }, |
1038 } | 1046 } |
OLD | NEW |