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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 2086403002: Remove the Kasko based out of process browser hang instrumentation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge Created 4 years, 5 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 | « chrome/browser/process_singleton_win.cc ('k') | chrome/chrome_watcher/BUILD.gn » ('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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 3712 matching lines...) Expand 10 before | Expand all | Expand 10 after
3723 'sources': [ 3723 'sources': [
3724 'app/chrome_crash_reporter_client.cc', 3724 'app/chrome_crash_reporter_client.cc',
3725 'app/chrome_crash_reporter_client.h', 3725 'app/chrome_crash_reporter_client.h',
3726 ], 3726 ],
3727 'dependencies': [ 3727 'dependencies': [
3728 '../components/components.gyp:breakpad_host', 3728 '../components/components.gyp:breakpad_host',
3729 '../components/components.gyp:crash_component', 3729 '../components/components.gyp:crash_component',
3730 '../components/components.gyp:generate_version_info', 3730 '../components/components.gyp:generate_version_info',
3731 ], 3731 ],
3732 }], 3732 }],
3733 ['OS == "win" and kasko_failed_rdv_reports == 1', {
3734 'sources': [
3735 'app/chrome_crash_reporter_client_win.cc',
3736 'app/chrome_crash_reporter_client_win.h',
3737 ],
3738 'dependencies': [
3739 '../components/components.gyp:crash_component_lib',
3740 ],
3741 }],
3742 ['use_nss_certs==1', { 3733 ['use_nss_certs==1', {
3743 'sources': [ '<@(chrome_browser_nss_sources)' ], 3734 'sources': [ '<@(chrome_browser_nss_sources)' ],
3744 'conditions': [ 3735 'conditions': [
3745 ['chromeos==1', { 3736 ['chromeos==1', {
3746 'sources!': [ 'browser/net/nss_context_linux.cc' ], 3737 'sources!': [ 'browser/net/nss_context_linux.cc' ],
3747 }, { # chromeos==0 3738 }, { # chromeos==0
3748 'sources!': [ 'browser/net/nss_context_chromeos.cc' ], 3739 'sources!': [ 'browser/net/nss_context_chromeos.cc' ],
3749 }], 3740 }],
3750 ], 3741 ],
3751 }], 3742 }],
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
3898 ['OS=="win"', { 3889 ['OS=="win"', {
3899 'sources': [ '<@(chrome_browser_win_sources)' ], 3890 'sources': [ '<@(chrome_browser_win_sources)' ],
3900 'include_dirs': [ 3891 'include_dirs': [
3901 '<(DEPTH)/third_party/wtl/include', 3892 '<(DEPTH)/third_party/wtl/include',
3902 ], 3893 ],
3903 'dependencies': [ 3894 'dependencies': [
3904 'chrome_process_finder', 3895 'chrome_process_finder',
3905 'chrome_watcher_client', 3896 'chrome_watcher_client',
3906 'file_pre_reader', 3897 'file_pre_reader',
3907 'installer_util_strings', 3898 'installer_util_strings',
3908 'kasko_util',
3909 'metrics_constants_util_win', 3899 'metrics_constants_util_win',
3910 '../chrome/common_constants.gyp:version_header', 3900 '../chrome/common_constants.gyp:version_header',
3911 '../chrome_elf/chrome_elf.gyp:chrome_elf', 3901 '../chrome_elf/chrome_elf.gyp:chrome_elf',
3912 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', 3902 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants',
3913 '../chrome_elf/chrome_elf.gyp:dll_hash', 3903 '../chrome_elf/chrome_elf.gyp:dll_hash',
3914 '../components/components.gyp:browser_watcher', 3904 '../components/components.gyp:browser_watcher',
3915 '../components/components.gyp:browser_watcher_client', 3905 '../components/components.gyp:browser_watcher_client',
3916 # TODO(fdoray): Remove this once the PreRead field trial has 3906 # TODO(fdoray): Remove this once the PreRead field trial has
3917 # expired. crbug.com/577698 3907 # expired. crbug.com/577698
3918 '../components/components.gyp:startup_metric_utils_win', 3908 '../components/components.gyp:startup_metric_utils_win',
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
4304 '../components/components.gyp:rlz', 4294 '../components/components.gyp:rlz',
4305 '../components/components.gyp:search_engines', 4295 '../components/components.gyp:search_engines',
4306 '../rlz/rlz.gyp:rlz_lib', 4296 '../rlz/rlz.gyp:rlz_lib',
4307 'common', 4297 'common',
4308 ], 4298 ],
4309 }, 4299 },
4310 ], 4300 ],
4311 }], 4301 }],
4312 ], 4302 ],
4313 } 4303 }
OLDNEW
« no previous file with comments | « chrome/browser/process_singleton_win.cc ('k') | chrome/chrome_watcher/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698