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

Side by Side Diff: components/startup_metric_utils.gypi

Issue 1413533008: Add UMA metric: Startup.BrowserMainToRendererMain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix whitespace error. Created 5 years, 1 month 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/html_viewer/BUILD.gn ('k') | components/startup_metric_utils/browser/BUILD.gn » ('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 browser targets because //components/html_viewer requires
6 # startup_metric_utils_browser, but has symbols that conflict with mojo symbols
7 # that startup_metric_utils_browser_message_filter indirectly depends on.
8
5 { 9 {
6 'targets': [ 10 'targets': [
7 { 11 {
12 # GN version: //components/startup_metric_utils/browser:lib
8 'target_name': 'startup_metric_utils_browser', 13 'target_name': 'startup_metric_utils_browser',
9 'type': 'static_library', 14 'type': 'static_library',
10 'dependencies': [ 15 'dependencies': [
11 '../base/base.gyp:base', 16 '../base/base.gyp:base',
12 ], 17 ],
13 'include_dirs': [ 18 'include_dirs': [
14 '..', 19 '..',
15 ], 20 ],
16 'sources': [ 21 'sources': [
17 'startup_metric_utils/browser/startup_metric_utils.cc', 22 'startup_metric_utils/browser/startup_metric_utils.cc',
18 'startup_metric_utils/browser/startup_metric_utils.h', 23 'startup_metric_utils/browser/startup_metric_utils.h',
19 ], 24 ],
20 }, 25 },
26 {
27 # GN version: //components/startup_metric_utils/browser:message_filter_lib
28 'target_name': 'startup_metric_utils_browser_message_filter',
29 'type': 'static_library',
30 'dependencies': [
31 '../base/base.gyp:base',
32 '../content/content.gyp:content_browser',
33 'startup_metric_utils_browser',
34 'startup_metric_utils_common',
35 ],
36 'include_dirs': [
37 '..',
38 ],
39 'sources': [
40 'startup_metric_utils/browser/startup_metric_message_filter.cc',
41 'startup_metric_utils/browser/startup_metric_message_filter.h',
42 ],
43 },
44 {
45 # GN version: //components/startup_metric_utils/common
46 'target_name': 'startup_metric_utils_common',
47 'type': 'static_library',
48 'dependencies': [
49 '../base/base.gyp:base',
50 '../ipc/ipc.gyp:ipc',
51 ],
52 'include_dirs': [
53 '..',
54 ],
55 'sources': [
56 'startup_metric_utils/common/startup_metric_message_generator.cc',
57 'startup_metric_utils/common/startup_metric_message_generator.h',
58 'startup_metric_utils/common/startup_metric_messages.h',
59 ],
60 },
21 ], 61 ],
22 } 62 }
OLDNEW
« no previous file with comments | « components/html_viewer/BUILD.gn ('k') | components/startup_metric_utils/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698