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

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

Issue 2189583004: [not for review - epic CL] Adding Elastic+Momentum+Layered scrolling to views::ScrollView Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 2 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 | « ui/base/resource/resource_bundle.cc ('k') | ui/compositor/compositor.h » ('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 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 "callback_layer_animation_observer.cc", 10 "callback_layer_animation_observer.cc",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "layer_animator_collection.cc", 46 "layer_animator_collection.cc",
47 "layer_animator_collection.h", 47 "layer_animator_collection.h",
48 "layer_delegate.h", 48 "layer_delegate.h",
49 "layer_observer.h", 49 "layer_observer.h",
50 "layer_owner.cc", 50 "layer_owner.cc",
51 "layer_owner.h", 51 "layer_owner.h",
52 "layer_threaded_animation_delegate.h", 52 "layer_threaded_animation_delegate.h",
53 "layer_tree_owner.cc", 53 "layer_tree_owner.cc",
54 "layer_tree_owner.h", 54 "layer_tree_owner.h",
55 "layer_type.h", 55 "layer_type.h",
56 "overscroll/ui_input_handler.cc",
57 "overscroll/ui_input_handler.h",
58 "overscroll/ui_scroll_input_manager.cc",
59 "overscroll/ui_scroll_input_manager.h",
56 "paint_cache.cc", 60 "paint_cache.cc",
57 "paint_cache.h", 61 "paint_cache.h",
58 "paint_context.cc", 62 "paint_context.cc",
59 "paint_context.h", 63 "paint_context.h",
60 "paint_recorder.cc", 64 "paint_recorder.cc",
61 "paint_recorder.h", 65 "paint_recorder.h",
62 "reflector.cc", 66 "reflector.cc",
63 "reflector.h", 67 "reflector.h",
64 "scoped_animation_duration_scale_mode.cc", 68 "scoped_animation_duration_scale_mode.cc",
65 "scoped_animation_duration_scale_mode.h", 69 "scoped_animation_duration_scale_mode.h",
66 "scoped_layer_animation_settings.cc", 70 "scoped_layer_animation_settings.cc",
67 "scoped_layer_animation_settings.h", 71 "scoped_layer_animation_settings.h",
68 "transform_animation_curve_adapter.cc", 72 "transform_animation_curve_adapter.cc",
69 "transform_animation_curve_adapter.h", 73 "transform_animation_curve_adapter.h",
70 "transform_recorder.cc", 74 "transform_recorder.cc",
71 "transform_recorder.h", 75 "transform_recorder.h",
72 ] 76 ]
73 77
74 defines = [ "COMPOSITOR_IMPLEMENTATION" ] 78 defines = [ "COMPOSITOR_IMPLEMENTATION" ]
75 79
76 deps = [ 80 deps = [
77 "//base", 81 "//base",
78 "//base/third_party/dynamic_annotations", 82 "//base/third_party/dynamic_annotations",
79 "//cc", 83 "//cc",
80 "//cc/surfaces", 84 "//cc/surfaces",
81 "//cc/surfaces:surface_id", 85 "//cc/surfaces:surface_id",
82 "//gpu/command_buffer/common", 86 "//gpu/command_buffer/common",
83 "//skia", 87 "//skia",
88 "//ui/events",
89 "//ui/events/blink",
84 "//ui/gfx", 90 "//ui/gfx",
85 "//ui/gfx/geometry", 91 "//ui/gfx/geometry",
86 "//ui/gl", 92 "//ui/gl",
87 ] 93 ]
88 94
89 if (is_win && use_aura) { 95 if (is_win && use_aura) {
90 # TODO(sky): before we make this real need to remove 96 # TODO(sky): before we make this real need to remove
91 # IDR_BITMAP_BRUSH_IMAGE. 97 # IDR_BITMAP_BRUSH_IMAGE.
92 deps += [ 98 deps += [
93 "//third_party/angle:libEGL", 99 "//third_party/angle:libEGL",
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "//ui/base", 203 "//ui/base",
198 "//ui/gfx", 204 "//ui/gfx",
199 "//ui/gfx/geometry", 205 "//ui/gfx/geometry",
200 "//ui/gl", 206 "//ui/gl",
201 "//ui/resources", 207 "//ui/resources",
202 ] 208 ]
203 if (is_linux) { 209 if (is_linux) {
204 deps += [ "//third_party/mesa:osmesa" ] 210 deps += [ "//third_party/mesa:osmesa" ]
205 } 211 }
206 } 212 }
OLDNEW
« no previous file with comments | « ui/base/resource/resource_bundle.cc ('k') | ui/compositor/compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698