| 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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 'process/process_metrics_mac.cc', | 504 'process/process_metrics_mac.cc', |
| 505 'process/process_metrics_openbsd.cc', | 505 'process/process_metrics_openbsd.cc', |
| 506 'process/process_metrics_posix.cc', | 506 'process/process_metrics_posix.cc', |
| 507 'process/process_metrics_win.cc', | 507 'process/process_metrics_win.cc', |
| 508 'process/process_posix.cc', | 508 'process/process_posix.cc', |
| 509 'process/process_win.cc', | 509 'process/process_win.cc', |
| 510 'profiler/alternate_timer.cc', | 510 'profiler/alternate_timer.cc', |
| 511 'profiler/alternate_timer.h', | 511 'profiler/alternate_timer.h', |
| 512 'profiler/native_stack_sampler.cc', | 512 'profiler/native_stack_sampler.cc', |
| 513 'profiler/native_stack_sampler.h', | 513 'profiler/native_stack_sampler.h', |
| 514 'profiler/native_stack_sampler_mac.cc', |
| 514 'profiler/native_stack_sampler_posix.cc', | 515 'profiler/native_stack_sampler_posix.cc', |
| 515 'profiler/native_stack_sampler_win.cc', | 516 'profiler/native_stack_sampler_win.cc', |
| 516 'profiler/scoped_profile.cc', | 517 'profiler/scoped_profile.cc', |
| 517 'profiler/scoped_profile.h', | 518 'profiler/scoped_profile.h', |
| 518 'profiler/scoped_tracker.cc', | 519 'profiler/scoped_tracker.cc', |
| 519 'profiler/scoped_tracker.h', | 520 'profiler/scoped_tracker.h', |
| 520 'profiler/stack_sampling_profiler.cc', | 521 'profiler/stack_sampling_profiler.cc', |
| 521 'profiler/stack_sampling_profiler.h', | 522 'profiler/stack_sampling_profiler.h', |
| 522 'profiler/tracked_time.cc', | 523 'profiler/tracked_time.cc', |
| 523 'profiler/tracked_time.h', | 524 'profiler/tracked_time.h', |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 ], | 764 ], |
| 764 'include_dirs': [ | 765 'include_dirs': [ |
| 765 '..', | 766 '..', |
| 766 ], | 767 ], |
| 767 'target_conditions': [ | 768 'target_conditions': [ |
| 768 ['OS == "mac" or OS == "ios"', { | 769 ['OS == "mac" or OS == "ios"', { |
| 769 'sources!': [ | 770 'sources!': [ |
| 770 'memory/shared_memory_posix.cc', | 771 'memory/shared_memory_posix.cc', |
| 771 ], | 772 ], |
| 772 }], | 773 }], |
| 774 ['OS == "mac"', { |
| 775 'sources!': [ |
| 776 'profiler/native_stack_sampler_posix.cc', |
| 777 ], |
| 778 }], |
| 773 ['OS == "ios"', { | 779 ['OS == "ios"', { |
| 774 'sources!': [ | 780 'sources!': [ |
| 775 'memory/discardable_shared_memory.cc', | 781 'memory/discardable_shared_memory.cc', |
| 776 'memory/discardable_shared_memory.h', | 782 'memory/discardable_shared_memory.h', |
| 777 ], | 783 ], |
| 778 }], | 784 }], |
| 779 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui
ld)==1', { | 785 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui
ld)==1', { |
| 780 'sources/': [ | 786 'sources/': [ |
| 781 ['exclude', '^nix/'], | 787 ['exclude', '^nix/'], |
| 782 ], | 788 ], |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1048 'i18n/time_formatting.h', | 1054 'i18n/time_formatting.h', |
| 1049 'i18n/timezone.cc', | 1055 'i18n/timezone.cc', |
| 1050 'i18n/timezone.h', | 1056 'i18n/timezone.h', |
| 1051 'i18n/utf8_validator_tables.cc', | 1057 'i18n/utf8_validator_tables.cc', |
| 1052 'i18n/utf8_validator_tables.h', | 1058 'i18n/utf8_validator_tables.h', |
| 1053 ], | 1059 ], |
| 1054 }] | 1060 }] |
| 1055 ], | 1061 ], |
| 1056 }, | 1062 }, |
| 1057 } | 1063 } |
| OLD | NEW |