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

Side by Side Diff: components/metrics/BUILD.gn

Issue 1021053003: Delivering the FIRST_NONEMPTY_PAINT phase changing event to base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@phase_splitting
Patch Set: Next batch if isherman@ comments. Created 5 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 # GYP version: components/metrics.gypi:metrics 5 # GYP version: components/metrics.gypi:metrics
6 source_set("metrics") { 6 source_set("metrics") {
7 sources = [ 7 sources = [
8 "call_stack_profile_metrics_provider.cc", 8 "call_stack_profile_metrics_provider.cc",
9 "call_stack_profile_metrics_provider.h", 9 "call_stack_profile_metrics_provider.h",
10 "clean_exit_beacon.cc", 10 "clean_exit_beacon.cc",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 ] 115 ]
116 } 116 }
117 117
118 # GYP version: components/metrics.gypi:metrics_profiler 118 # GYP version: components/metrics.gypi:metrics_profiler
119 source_set("profiler") { 119 source_set("profiler") {
120 sources = [ 120 sources = [
121 "profiler/profiler_metrics_provider.cc", 121 "profiler/profiler_metrics_provider.cc",
122 "profiler/profiler_metrics_provider.h", 122 "profiler/profiler_metrics_provider.h",
123 "profiler/tracking_synchronizer.cc", 123 "profiler/tracking_synchronizer.cc",
124 "profiler/tracking_synchronizer.h", 124 "profiler/tracking_synchronizer.h",
125 "profiler/tracking_synchronizer_observer.cc",
125 "profiler/tracking_synchronizer_observer.h", 126 "profiler/tracking_synchronizer_observer.h",
126 ] 127 ]
127 128
128 public_deps = [ 129 public_deps = [
129 ":metrics", 130 ":metrics",
130 ] 131 ]
131 deps = [ 132 deps = [
132 "//base", 133 "//base",
133 "//components/variations", 134 "//components/variations",
134 "//content/public/browser", 135 "//content/public/browser",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 ":profiler", 191 ":profiler",
191 ":test_support", 192 ":test_support",
192 "//base:prefs_test_support", 193 "//base:prefs_test_support",
193 "//base/test:test_support", 194 "//base/test:test_support",
194 "//components/variations", 195 "//components/variations",
195 "//content/public/common", 196 "//content/public/common",
196 "//testing/gtest", 197 "//testing/gtest",
197 ] 198 ]
198 } 199 }
199 # TODO(GYP): metrics_chromeos 200 # TODO(GYP): metrics_chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698