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

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

Issue 2811083002: Move frame eviction into components (Closed)
Patch Set: Move features into base,and rename Created 3 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("display_compositor") { 8 component("display_compositor") {
9 sources = [ 9 sources = [
10 "buffer_queue.cc", 10 "buffer_queue.cc",
11 "buffer_queue.h", 11 "buffer_queue.h",
12 "compositor_overlay_candidate_validator.h", 12 "compositor_overlay_candidate_validator.h",
13 "display_compositor_export.h", 13 "display_compositor_export.h",
14 "frame_eviction_manager.cc",
15 "frame_eviction_manager.h",
16 "frame_evictor.cc",
17 "frame_evictor.h",
14 "gl_helper.cc", 18 "gl_helper.cc",
15 "gl_helper.h", 19 "gl_helper.h",
16 "gl_helper_readback_support.cc", 20 "gl_helper_readback_support.cc",
17 "gl_helper_readback_support.h", 21 "gl_helper_readback_support.h",
18 "gl_helper_scaling.cc", 22 "gl_helper_scaling.cc",
19 "gl_helper_scaling.h", 23 "gl_helper_scaling.h",
20 "host_shared_bitmap_manager.cc", 24 "host_shared_bitmap_manager.cc",
21 "host_shared_bitmap_manager.h", 25 "host_shared_bitmap_manager.h",
22 ] 26 ]
23 27
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "//skia", 171 "//skia",
168 "//testing/gmock", 172 "//testing/gmock",
169 "//testing/gtest", 173 "//testing/gtest",
170 "//ui/gl:test_support", 174 "//ui/gl:test_support",
171 ] 175 ]
172 176
173 data_deps = [ 177 data_deps = [
174 "//third_party/mesa:osmesa", 178 "//third_party/mesa:osmesa",
175 ] 179 ]
176 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698