| OLD | NEW |
| 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 "clip_transform_recorder.cc", | 10 "clip_transform_recorder.cc", |
| 11 "clip_transform_recorder.h", | 11 "clip_transform_recorder.h", |
| 12 "closure_animation_observer.cc", | 12 "closure_animation_observer.cc", |
| 13 "closure_animation_observer.h", | 13 "closure_animation_observer.h", |
| 14 "compositing_recorder.cc", |
| 15 "compositing_recorder.h", |
| 14 "compositor.cc", | 16 "compositor.cc", |
| 15 "compositor.h", | 17 "compositor.h", |
| 16 "compositor_animation_observer.h", | 18 "compositor_animation_observer.h", |
| 17 "compositor_export.h", | 19 "compositor_export.h", |
| 18 "compositor_observer.h", | 20 "compositor_observer.h", |
| 19 "compositor_switches.cc", | 21 "compositor_switches.cc", |
| 20 "compositor_switches.h", | 22 "compositor_switches.h", |
| 21 "compositor_vsync_manager.cc", | 23 "compositor_vsync_manager.cc", |
| 22 "compositor_vsync_manager.h", | 24 "compositor_vsync_manager.h", |
| 23 "debug_utils.cc", | 25 "debug_utils.cc", |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "//ui/gfx/geometry", | 177 "//ui/gfx/geometry", |
| 176 "//ui/gl", | 178 "//ui/gl", |
| 177 "//ui/resources", | 179 "//ui/resources", |
| 178 ] | 180 ] |
| 179 | 181 |
| 180 if (is_linux) { | 182 if (is_linux) { |
| 181 deps += [ "//third_party/mesa:osmesa" ] | 183 deps += [ "//third_party/mesa:osmesa" ] |
| 182 } | 184 } |
| 183 } | 185 } |
| 184 } | 186 } |
| OLD | NEW |