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

Side by Side Diff: ui/compositor/BUILD.gn

Issue 2631333002: [animations] Adds metrics for jank on selected layer animations (Closed)
Patch Set: Adds UMA reporting for ripples and overview mode (extern constexpr) Created 3 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
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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("compositor") { 8 component("compositor") {
9 sources = [ 9 sources = [
10 "animation_metrics_reporter_template.h",
10 "callback_layer_animation_observer.cc", 11 "callback_layer_animation_observer.cc",
11 "callback_layer_animation_observer.h", 12 "callback_layer_animation_observer.h",
12 "canvas_painter.cc", 13 "canvas_painter.cc",
13 "canvas_painter.h", 14 "canvas_painter.h",
14 "clip_recorder.cc", 15 "clip_recorder.cc",
15 "clip_recorder.h", 16 "clip_recorder.h",
16 "closure_animation_observer.cc", 17 "closure_animation_observer.cc",
17 "closure_animation_observer.h", 18 "closure_animation_observer.h",
18 "compositing_recorder.cc", 19 "compositing_recorder.cc",
19 "compositing_recorder.h", 20 "compositing_recorder.h",
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 "//ui/base", 201 "//ui/base",
201 "//ui/gfx", 202 "//ui/gfx",
202 "//ui/gfx/geometry", 203 "//ui/gfx/geometry",
203 "//ui/gl", 204 "//ui/gl",
204 "//ui/resources", 205 "//ui/resources",
205 ] 206 ]
206 if (is_linux) { 207 if (is_linux) {
207 deps += [ "//third_party/mesa:osmesa" ] 208 deps += [ "//third_party/mesa:osmesa" ]
208 } 209 }
209 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698