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

Side by Side Diff: components/startup_metric_utils/browser/BUILD.gn

Issue 1619273003: Add Startup.SameVersionStartupCount histogram (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@b0_lukewarm_startup_stats
Patch Set: merge Created 4 years, 11 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 | « components/startup_metric_utils.gypi ('k') | components/startup_metric_utils/browser/DEPS » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # We have 2 separate targets because //components/html_viewer requires :lib, 5 # We have 2 separate targets because //components/html_viewer requires :lib,
6 # but has symbols that conflict with mojo symbols that :message_filter_lib 6 # but has symbols that conflict with mojo symbols that :message_filter_lib
7 # indirectly depends on. 7 # indirectly depends on.
8 8
9 group("browser") { 9 group("browser") {
10 testonly = true 10 testonly = true
11 11
12 deps = [ 12 deps = [
13 ":lib", 13 ":lib",
14 ":message_filter_lib", 14 ":message_filter_lib",
15 ] 15 ]
16 } 16 }
17 17
18 source_set("lib") { 18 source_set("lib") {
19 sources = [ 19 sources = [
20 "pref_names.cc",
21 "pref_names.h",
20 "startup_metric_utils.cc", 22 "startup_metric_utils.cc",
21 "startup_metric_utils.h", 23 "startup_metric_utils.h",
22 ] 24 ]
23 25
24 deps = [ 26 deps = [
25 "//base", 27 "//base",
26 "//base:prefs", 28 "//base:prefs",
29 "//components/version_info",
27 ] 30 ]
28 } 31 }
29 32
30 source_set("message_filter_lib") { 33 source_set("message_filter_lib") {
31 sources = [ 34 sources = [
32 "startup_metric_message_filter.cc", 35 "startup_metric_message_filter.cc",
33 "startup_metric_message_filter.h", 36 "startup_metric_message_filter.h",
34 ] 37 ]
35 38
36 deps = [ 39 deps = [
37 ":lib", 40 ":lib",
38 "//base", 41 "//base",
39 "//components/startup_metric_utils/common", 42 "//components/startup_metric_utils/common",
40 "//content/public/browser", 43 "//content/public/browser",
41 ] 44 ]
42 } 45 }
OLDNEW
« no previous file with comments | « components/startup_metric_utils.gypi ('k') | components/startup_metric_utils/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698