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

Side by Side Diff: base/base.gypi

Issue 1346453004: NativeStackSampler implementation for Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Binding libraries and nits. Created 5 years, 3 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 | « base/BUILD.gn ('k') | base/profiler/native_stack_sampler_mac.cc » ('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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 'process/process_metrics_mac.cc', 502 'process/process_metrics_mac.cc',
503 'process/process_metrics_openbsd.cc', 503 'process/process_metrics_openbsd.cc',
504 'process/process_metrics_posix.cc', 504 'process/process_metrics_posix.cc',
505 'process/process_metrics_win.cc', 505 'process/process_metrics_win.cc',
506 'process/process_posix.cc', 506 'process/process_posix.cc',
507 'process/process_win.cc', 507 'process/process_win.cc',
508 'profiler/alternate_timer.cc', 508 'profiler/alternate_timer.cc',
509 'profiler/alternate_timer.h', 509 'profiler/alternate_timer.h',
510 'profiler/native_stack_sampler.cc', 510 'profiler/native_stack_sampler.cc',
511 'profiler/native_stack_sampler.h', 511 'profiler/native_stack_sampler.h',
512 'profiler/native_stack_sampler_mac.cc',
512 'profiler/native_stack_sampler_posix.cc', 513 'profiler/native_stack_sampler_posix.cc',
513 'profiler/native_stack_sampler_win.cc', 514 'profiler/native_stack_sampler_win.cc',
514 'profiler/scoped_profile.cc', 515 'profiler/scoped_profile.cc',
515 'profiler/scoped_profile.h', 516 'profiler/scoped_profile.h',
516 'profiler/scoped_tracker.cc', 517 'profiler/scoped_tracker.cc',
517 'profiler/scoped_tracker.h', 518 'profiler/scoped_tracker.h',
518 'profiler/stack_sampling_profiler.cc', 519 'profiler/stack_sampling_profiler.cc',
519 'profiler/stack_sampling_profiler.h', 520 'profiler/stack_sampling_profiler.h',
520 'profiler/tracked_time.cc', 521 'profiler/tracked_time.cc',
521 'profiler/tracked_time.h', 522 'profiler/tracked_time.h',
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 ], 762 ],
762 'include_dirs': [ 763 'include_dirs': [
763 '..', 764 '..',
764 ], 765 ],
765 'target_conditions': [ 766 'target_conditions': [
766 ['OS == "mac" or OS == "ios"', { 767 ['OS == "mac" or OS == "ios"', {
767 'sources!': [ 768 'sources!': [
768 'memory/shared_memory_posix.cc', 769 'memory/shared_memory_posix.cc',
769 ], 770 ],
770 }], 771 }],
772 ['OS == "mac"', {
773 'sources!': [
774 'profiler/native_stack_sampler_posix.cc',
775 ],
776 }],
771 ['OS == "ios"', { 777 ['OS == "ios"', {
772 'sources!': [ 778 'sources!': [
773 'memory/discardable_shared_memory.cc', 779 'memory/discardable_shared_memory.cc',
774 'memory/discardable_shared_memory.h', 780 'memory/discardable_shared_memory.h',
775 ], 781 ],
776 }], 782 }],
777 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui ld)==1', { 783 ['(<(desktop_linux) == 0 and <(chromeos) == 0) or >(nacl_untrusted_bui ld)==1', {
778 'sources/': [ 784 'sources/': [
779 ['exclude', '^nix/'], 785 ['exclude', '^nix/'],
780 ], 786 ],
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
1043 'i18n/time_formatting.h', 1049 'i18n/time_formatting.h',
1044 'i18n/timezone.cc', 1050 'i18n/timezone.cc',
1045 'i18n/timezone.h', 1051 'i18n/timezone.h',
1046 'i18n/utf8_validator_tables.cc', 1052 'i18n/utf8_validator_tables.cc',
1047 'i18n/utf8_validator_tables.h', 1053 'i18n/utf8_validator_tables.h',
1048 ], 1054 ],
1049 }] 1055 }]
1050 ], 1056 ],
1051 }, 1057 },
1052 } 1058 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/profiler/native_stack_sampler_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698