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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1844023002: Capture a report on failed browser rendez-vous. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix consent validation at rdv Created 4 years, 8 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 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 3644 matching lines...) Expand 10 before | Expand all | Expand 10 after
3655 'sources': [ 3655 'sources': [
3656 'app/chrome_crash_reporter_client.cc', 3656 'app/chrome_crash_reporter_client.cc',
3657 'app/chrome_crash_reporter_client.h', 3657 'app/chrome_crash_reporter_client.h',
3658 ], 3658 ],
3659 'dependencies': [ 3659 'dependencies': [
3660 '../components/components.gyp:breakpad_host', 3660 '../components/components.gyp:breakpad_host',
3661 '../components/components.gyp:crash_component', 3661 '../components/components.gyp:crash_component',
3662 '../components/components.gyp:generate_version_info', 3662 '../components/components.gyp:generate_version_info',
3663 ], 3663 ],
3664 }], 3664 }],
3665 ['OS == "win" and kasko == 1 and kasko_failed_rdv_reports == 1', {
3666 'sources': [
3667 'app/chrome_crash_reporter_client.cc',
3668 'app/chrome_crash_reporter_client.h',
3669 ],
3670 'dependencies': [
3671 '../components/components.gyp:crash_component_lib',
3672 ],
3673 }],
3665 ['use_nss_certs==1', { 3674 ['use_nss_certs==1', {
3666 'sources': [ '<@(chrome_browser_nss_sources)' ], 3675 'sources': [ '<@(chrome_browser_nss_sources)' ],
3667 'conditions': [ 3676 'conditions': [
3668 ['chromeos==1', { 3677 ['chromeos==1', {
3669 'sources!': [ 'browser/net/nss_context_linux.cc' ], 3678 'sources!': [ 'browser/net/nss_context_linux.cc' ],
3670 }, { # chromeos==0 3679 }, { # chromeos==0
3671 'sources!': [ 'browser/net/nss_context_chromeos.cc' ], 3680 'sources!': [ 'browser/net/nss_context_chromeos.cc' ],
3672 }], 3681 }],
3673 ], 3682 ],
3674 }], 3683 }],
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
3813 }], 3822 }],
3814 ['OS=="win"', { 3823 ['OS=="win"', {
3815 'sources': [ '<@(chrome_browser_win_sources)' ], 3824 'sources': [ '<@(chrome_browser_win_sources)' ],
3816 'include_dirs': [ 3825 'include_dirs': [
3817 '<(DEPTH)/third_party/wtl/include', 3826 '<(DEPTH)/third_party/wtl/include',
3818 ], 3827 ],
3819 'dependencies': [ 3828 'dependencies': [
3820 'chrome_process_finder', 3829 'chrome_process_finder',
3821 'chrome_watcher_client', 3830 'chrome_watcher_client',
3822 'installer_util_strings', 3831 'installer_util_strings',
3832 'kasko_util',
3823 '../chrome/common_constants.gyp:version_header', 3833 '../chrome/common_constants.gyp:version_header',
3824 '../chrome_elf/chrome_elf.gyp:chrome_elf', 3834 '../chrome_elf/chrome_elf.gyp:chrome_elf',
3825 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', 3835 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants',
3826 '../chrome_elf/chrome_elf.gyp:dll_hash', 3836 '../chrome_elf/chrome_elf.gyp:dll_hash',
3827 '../components/components.gyp:browser_watcher', 3837 '../components/components.gyp:browser_watcher',
3828 '../components/components.gyp:browser_watcher_client', 3838 '../components/components.gyp:browser_watcher_client',
3829 '../components/components.gyp:startup_metric_utils_common', 3839 '../components/components.gyp:startup_metric_utils_common',
3830 '../google_update/google_update.gyp:google_update', 3840 '../google_update/google_update.gyp:google_update',
3831 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 3841 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
3832 '../third_party/isimpledom/isimpledom.gyp:isimpledom', 3842 '../third_party/isimpledom/isimpledom.gyp:isimpledom',
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
4202 '../components/components.gyp:rlz', 4212 '../components/components.gyp:rlz',
4203 '../components/components.gyp:search_engines', 4213 '../components/components.gyp:search_engines',
4204 '../rlz/rlz.gyp:rlz_lib', 4214 '../rlz/rlz.gyp:rlz_lib',
4205 'common', 4215 'common',
4206 ], 4216 ],
4207 }, 4217 },
4208 ], 4218 ],
4209 }], 4219 }],
4210 ], 4220 ],
4211 } 4221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698