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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 2045073002: Export stability metrics to UMA from Blimp engine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 years, 6 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 | « no previous file | blimp/engine/app/blimp_metrics_service_client.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "//content/public/common", 99 "//content/public/common",
100 "//ui/gl", 100 "//ui/gl",
101 "//ui/native_theme", 101 "//ui/native_theme",
102 ] 102 ]
103 } 103 }
104 104
105 source_set("app_metrics") { 105 source_set("app_metrics") {
106 sources = [ 106 sources = [
107 "app/blimp_metrics_service_client.cc", 107 "app/blimp_metrics_service_client.cc",
108 "app/blimp_metrics_service_client.h", 108 "app/blimp_metrics_service_client.h",
109 "app/blimp_stability_metrics_provider.cc",
110 "app/blimp_stability_metrics_provider.h",
109 ] 111 ]
110 112
111 public_deps = [ 113 public_deps = [
112 "//components/metrics", 114 "//components/metrics",
113 "//content/public/browser", 115 "//content/public/browser",
114 ] 116 ]
115 117
116 deps = [ 118 deps = [
117 "//base", 119 "//base",
118 "//base:i18n", 120 "//base:i18n",
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 "//base", 367 "//base",
366 ] 368 ]
367 } 369 }
368 370
369 source_set("app_unit_tests") { 371 source_set("app_unit_tests") {
370 testonly = true 372 testonly = true
371 373
372 sources = [ 374 sources = [
373 "app/blimp_engine_config_unittest.cc", 375 "app/blimp_engine_config_unittest.cc",
374 "app/blimp_metrics_service_client_unittest.cc", 376 "app/blimp_metrics_service_client_unittest.cc",
377 "app/blimp_stability_metrics_provider_unittest.cc",
375 "app/blimp_system_url_request_context_getter_unittest.cc", 378 "app/blimp_system_url_request_context_getter_unittest.cc",
376 "app/settings_manager_unittest.cc", 379 "app/settings_manager_unittest.cc",
377 "app/ui/blimp_screen_unittest.cc", 380 "app/ui/blimp_screen_unittest.cc",
378 ] 381 ]
379 382
380 deps = [ 383 deps = [
381 ":app", 384 ":app",
382 ":app_config", 385 ":app_config",
383 ":app_metrics", 386 ":app_metrics",
384 ":app_net", 387 ":app_net",
385 ":app_settings", 388 ":app_settings",
386 "//base", 389 "//base",
387 "//base/test:run_all_unittests", 390 "//base/test:run_all_unittests",
388 "//base/test:test_support", 391 "//base/test:test_support",
389 "//blimp/common", 392 "//blimp/common",
390 "//blimp/common:test_support", 393 "//blimp/common:test_support",
391 "//blimp/engine:app_ui", 394 "//blimp/engine:app_ui",
392 "//components/metrics:metrics", 395 "//components/metrics:metrics",
393 "//components/pref_registry:pref_registry", 396 "//components/pref_registry:pref_registry",
394 "//components/prefs:prefs", 397 "//components/prefs:prefs",
398 "//components/prefs:test_support",
395 "//content/test:test_support", 399 "//content/test:test_support",
396 "//net:test_support", 400 "//net:test_support",
397 "//testing/gmock", 401 "//testing/gmock",
398 "//testing/gtest", 402 "//testing/gtest",
399 "//ui/display", 403 "//ui/display",
400 "//ui/gfx:test_support", 404 "//ui/gfx:test_support",
401 ] 405 ]
402 } 406 }
403 407
404 source_set("common_unit_tests") { 408 source_set("common_unit_tests") {
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 # Include symupload target here as it is needed by the buildbots to upload 604 # Include symupload target here as it is needed by the buildbots to upload
601 # the symbol file created by dump_syms. 605 # the symbol file created by dump_syms.
602 deps = [ 606 deps = [
603 ":blimp_engine_app", 607 ":blimp_engine_app",
604 "//breakpad:symupload", 608 "//breakpad:symupload",
605 dump_syms_label, 609 dump_syms_label,
606 ] 610 ]
607 } 611 }
608 } 612 }
609 } 613 }
OLDNEW
« no previous file with comments | « no previous file | blimp/engine/app/blimp_metrics_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698