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

Side by Side Diff: base/base.gyp

Issue 1423583002: Stack sampling profiler: handle unloaded and unloading modules (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: fix gcc compile Created 5 years, 1 month 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.h » ('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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 'dependencies': [ 759 'dependencies': [
760 'allocator/allocator.gyp:allocator', 760 'allocator/allocator.gyp:allocator',
761 ], 761 ],
762 }], 762 }],
763 ]}, 763 ]},
764 ], 764 ],
765 [ 'OS == "win" and target_arch == "x64"', { 765 [ 'OS == "win" and target_arch == "x64"', {
766 'sources': [ 766 'sources': [
767 'profiler/win32_stack_frame_unwinder_unittest.cc', 767 'profiler/win32_stack_frame_unwinder_unittest.cc',
768 ], 768 ],
769 'dependencies': [
770 'base_profiler_test_support_library',
771 ],
769 }], 772 }],
770 ['OS == "win"', { 773 ['OS == "win"', {
771 'sources!': [ 774 'sources!': [
772 'file_descriptor_shuffle_unittest.cc', 775 'file_descriptor_shuffle_unittest.cc',
773 'files/dir_reader_posix_unittest.cc', 776 'files/dir_reader_posix_unittest.cc',
774 'message_loop/message_pump_libevent_unittest.cc', 777 'message_loop/message_pump_libevent_unittest.cc',
775 'threading/worker_pool_posix_unittest.cc', 778 'threading/worker_pool_posix_unittest.cc',
776 ], 779 ],
777 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 780 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
778 'msvs_disabled_warnings': [ 781 'msvs_disabled_warnings': [
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1264 'defines': [ 1267 'defines': [
1265 '<@(nacl_win64_defines)', 1268 '<@(nacl_win64_defines)',
1266 ], 1269 ],
1267 # TODO(rvargas): Bug 78117. Remove this. 1270 # TODO(rvargas): Bug 78117. Remove this.
1268 'msvs_disabled_warnings': [ 1271 'msvs_disabled_warnings': [
1269 4244, 1272 4244,
1270 ], 1273 ],
1271 }, 1274 },
1272 ], 1275 ],
1273 }], 1276 }],
1277 ['OS == "win" and target_arch=="x64"', {
1278 'targets': [
1279 {
1280 'target_name': 'base_profiler_test_support_library',
1281 # Must be a shared library so that it can be unloaded during testing.
1282 'type': 'shared_library',
1283 'include_dirs': [
1284 '..',
1285 ],
1286 'sources': [
1287 'profiler/test_support_library.cc',
1288 ],
1289 },
1290 ]
1291 }],
1274 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1292 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1275 'targets': [ 1293 'targets': [
1276 { 1294 {
1277 'target_name': 'symbolize', 1295 'target_name': 'symbolize',
1278 'type': 'static_library', 1296 'type': 'static_library',
1279 'toolsets': ['host', 'target'], 1297 'toolsets': ['host', 'target'],
1280 'variables': { 1298 'variables': {
1281 'chromium_code': 0, 1299 'chromium_code': 0,
1282 }, 1300 },
1283 'conditions': [ 1301 'conditions': [
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
1677 '../build/isolate.gypi', 1695 '../build/isolate.gypi',
1678 ], 1696 ],
1679 'sources': [ 1697 'sources': [
1680 'base_unittests.isolate', 1698 'base_unittests.isolate',
1681 ], 1699 ],
1682 }, 1700 },
1683 ], 1701 ],
1684 }], 1702 }],
1685 ], 1703 ],
1686 } 1704 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/profiler/native_stack_sampler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698