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

Side by Side Diff: base/base.gypi

Issue 1263403002: Stack sampling profiler: re-enable stack collection for stacks terminated by leaf functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test unwinding Created 5 years, 4 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
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 915 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 }, 926 },
927 ], 927 ],
928 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { 928 ['OS != "openbsd" or >(nacl_untrusted_build)==1', {
929 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], 929 'sources/': [ ['exclude', '_openbsd\\.cc$'] ],
930 }, 930 },
931 ], 931 ],
932 ['OS == "win" and >(nacl_untrusted_build)==0', { 932 ['OS == "win" and >(nacl_untrusted_build)==0', {
933 'include_dirs': [ 933 'include_dirs': [
934 '<(DEPTH)/third_party/wtl/include', 934 '<(DEPTH)/third_party/wtl/include',
935 ], 935 ],
936 'sources': [
937 'profiler/win32_stack_frame_unwinder.cc',
938 'profiler/win32_stack_frame_unwinder.h',
939 ],
936 'sources!': [ 940 'sources!': [
937 'files/file_path_watcher_fsevents.cc', 941 'files/file_path_watcher_fsevents.cc',
938 'files/file_path_watcher_fsevents.h', 942 'files/file_path_watcher_fsevents.h',
939 'files/file_path_watcher_kqueue.cc', 943 'files/file_path_watcher_kqueue.cc',
940 'files/file_path_watcher_kqueue.h', 944 'files/file_path_watcher_kqueue.h',
941 'files/file_path_watcher_stub.cc', 945 'files/file_path_watcher_stub.cc',
942 'message_loop/message_pump_libevent.cc', 946 'message_loop/message_pump_libevent.cc',
943 'posix/file_descriptor_shuffle.cc', 947 'posix/file_descriptor_shuffle.cc',
944 # Not using sha1_win.cc because it may have caused a 948 # Not using sha1_win.cc because it may have caused a
945 # regression to page cycler moz. 949 # regression to page cycler moz.
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 'i18n/time_formatting.h', 1036 'i18n/time_formatting.h',
1033 'i18n/timezone.cc', 1037 'i18n/timezone.cc',
1034 'i18n/timezone.h', 1038 'i18n/timezone.h',
1035 'i18n/utf8_validator_tables.cc', 1039 'i18n/utf8_validator_tables.cc',
1036 'i18n/utf8_validator_tables.h', 1040 'i18n/utf8_validator_tables.h',
1037 ], 1041 ],
1038 }] 1042 }]
1039 ], 1043 ],
1040 }, 1044 },
1041 } 1045 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698