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

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

Issue 2670743002: Track renderer crash detected on WebState via GlobalWebStateObserver (Closed)
Patch Set: comment Created 3 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("metrics") { 5 source_set("metrics") {
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "field_trial_synchronizer.cc", 8 "field_trial_synchronizer.cc",
9 "field_trial_synchronizer.h", 9 "field_trial_synchronizer.h",
10 "ios_chrome_metrics_service_accessor.cc", 10 "ios_chrome_metrics_service_accessor.cc",
11 "ios_chrome_metrics_service_accessor.h", 11 "ios_chrome_metrics_service_accessor.h",
12 "ios_chrome_metrics_service_client.h", 12 "ios_chrome_metrics_service_client.h",
13 "ios_chrome_metrics_service_client.mm", 13 "ios_chrome_metrics_service_client.mm",
14 "ios_chrome_metrics_services_manager_client.h", 14 "ios_chrome_metrics_services_manager_client.h",
15 "ios_chrome_metrics_services_manager_client.mm", 15 "ios_chrome_metrics_services_manager_client.mm",
16 "ios_chrome_origins_seen_service_factory.cc", 16 "ios_chrome_origins_seen_service_factory.cc",
17 "ios_chrome_origins_seen_service_factory.h", 17 "ios_chrome_origins_seen_service_factory.h",
18 "ios_chrome_stability_metrics_provider.cc",
19 "ios_chrome_stability_metrics_provider.h", 18 "ios_chrome_stability_metrics_provider.h",
19 "ios_chrome_stability_metrics_provider.mm",
20 "mobile_session_shutdown_metrics_provider.h", 20 "mobile_session_shutdown_metrics_provider.h",
21 "mobile_session_shutdown_metrics_provider.mm", 21 "mobile_session_shutdown_metrics_provider.mm",
22 "previous_session_info.h", 22 "previous_session_info.h",
23 "previous_session_info.mm", 23 "previous_session_info.mm",
24 "previous_session_info_private.h", 24 "previous_session_info_private.h",
25 ] 25 ]
26 deps = [ 26 deps = [
27 "//base", 27 "//base",
28 "//components/browser_sync", 28 "//components/browser_sync",
29 "//components/crash/core/common", 29 "//components/crash/core/common",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 "//ios/chrome/test/app:test_support", 171 "//ios/chrome/test/app:test_support",
172 "//ios/chrome/test/earl_grey:test_support", 172 "//ios/chrome/test/earl_grey:test_support",
173 "//ios/testing:ios_test_support", 173 "//ios/testing:ios_test_support",
174 "//ios/third_party/earl_grey", 174 "//ios/third_party/earl_grey",
175 "//ios/web:earl_grey_test_support", 175 "//ios/web:earl_grey_test_support",
176 "//ios/web:test_support", 176 "//ios/web:test_support",
177 "//ui/base", 177 "//ui/base",
178 ] 178 ]
179 libs = [ "XCTest.framework" ] 179 libs = [ "XCTest.framework" ]
180 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698