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

Side by Side Diff: chrome/browser/BUILD.gn

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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 sources += [ 645 sources += [
646 "//chrome/app/chrome_crash_reporter_client.cc", 646 "//chrome/app/chrome_crash_reporter_client.cc",
647 "//chrome/app/chrome_crash_reporter_client.h", 647 "//chrome/app/chrome_crash_reporter_client.h",
648 ] 648 ]
649 deps += [ 649 deps += [
650 "//components/crash/content/app", 650 "//components/crash/content/app",
651 "//components/crash/content/browser", 651 "//components/crash/content/browser",
652 "//components/version_info:generate_version_info", 652 "//components/version_info:generate_version_info",
653 ] 653 ]
654 } 654 }
655 if (is_win && kasko && kasko_failed_rdv_reports) {
656 sources += [
657 "//chrome/app/chrome_crash_reporter_client.cc",
658 "//chrome/app/chrome_crash_reporter_client.h",
659 ]
660 deps += [
661 "//components/crash/content/app:lib",
662 ]
663 }
655 if (use_nss_certs) { 664 if (use_nss_certs) {
656 sources += 665 sources +=
657 rebase_path(gypi_values.chrome_browser_nss_sources, ".", "//chrome") 666 rebase_path(gypi_values.chrome_browser_nss_sources, ".", "//chrome")
658 if (is_chromeos) { 667 if (is_chromeos) {
659 sources -= [ "net/nss_context_linux.cc" ] 668 sources -= [ "net/nss_context_linux.cc" ]
660 } 669 }
661 } 670 }
662 if (enable_notifications) { 671 if (enable_notifications) {
663 sources += rebase_path(gypi_values.chrome_browser_notifications_sources, 672 sources += rebase_path(gypi_values.chrome_browser_notifications_sources,
664 ".", 673 ".",
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 if (is_win) { 834 if (is_win) {
826 sources += 835 sources +=
827 rebase_path(gypi_values.chrome_browser_win_sources, ".", "//chrome") 836 rebase_path(gypi_values.chrome_browser_win_sources, ".", "//chrome")
828 public_deps += [ 837 public_deps += [
829 "//ui/views", 838 "//ui/views",
830 "//ui/views/controls/webview", 839 "//ui/views/controls/webview",
831 ] 840 ]
832 deps += [ 841 deps += [
833 ":chrome_process_finder", 842 ":chrome_process_finder",
834 "//chrome/chrome_watcher:client", 843 "//chrome/chrome_watcher:client",
844 "//chrome/chrome_watcher:kasko_util",
835 "//chrome/common:version_header", 845 "//chrome/common:version_header",
836 "//chrome/installer/util:strings", 846 "//chrome/installer/util:strings",
837 "//chrome_elf", 847 "//chrome_elf",
838 "//chrome_elf:constants", 848 "//chrome_elf:constants",
839 "//chrome_elf:dll_hash", 849 "//chrome_elf:dll_hash",
840 "//components/browser_watcher", 850 "//components/browser_watcher",
841 "//components/browser_watcher:browser_watcher_client", 851 "//components/browser_watcher:browser_watcher_client",
842 "//components/startup_metric_utils/common", 852 "//components/startup_metric_utils/common",
843 "//google_update", 853 "//google_update",
844 "//third_party/iaccessible2", 854 "//third_party/iaccessible2",
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
1328 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1338 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1329 deps = [ 1339 deps = [
1330 "//components/google/core/browser", 1340 "//components/google/core/browser",
1331 "//components/omnibox/browser", 1341 "//components/omnibox/browser",
1332 "//components/rlz", 1342 "//components/rlz",
1333 "//components/search_engines", 1343 "//components/search_engines",
1334 "//rlz:rlz_lib", 1344 "//rlz:rlz_lib",
1335 ] 1345 ]
1336 } 1346 }
1337 } 1347 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698