| 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 | 6 |
| 7 component("compositor") { | 7 component("compositor") { |
| 8 sources = [ | 8 sources = [ |
| 9 "animation_frame_task.cc", |
| 10 "animation_frame_task.h", |
| 9 "compositor.cc", | 11 "compositor.cc", |
| 10 "compositor.h", | 12 "compositor.h", |
| 11 "compositor_export.h", | 13 "compositor_export.h", |
| 12 "compositor_observer.h", | 14 "compositor_observer.h", |
| 13 "compositor_vsync_manager.cc", | 15 "compositor_vsync_manager.cc", |
| 14 "compositor_vsync_manager.h", | 16 "compositor_vsync_manager.h", |
| 15 "compositor_switches.cc", | 17 "compositor_switches.cc", |
| 16 "compositor_switches.h", | 18 "compositor_switches.h", |
| 17 "debug_utils.cc", | 19 "debug_utils.cc", |
| 18 "debug_utils.h", | 20 "debug_utils.h", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 # "//ui/gfx", | 152 # "//ui/gfx", |
| 151 # "//ui/gfx/geometry", | 153 # "//ui/gfx/geometry", |
| 152 # "//ui/gl", | 154 # "//ui/gl", |
| 153 # "//ui/resources", | 155 # "//ui/resources", |
| 154 # ] | 156 # ] |
| 155 # | 157 # |
| 156 # if (is_linux) { | 158 # if (is_linux) { |
| 157 # deps += [ "//third_party/mesa:osmesa" ] | 159 # deps += [ "//third_party/mesa:osmesa" ] |
| 158 # } | 160 # } |
| 159 #} | 161 #} |
| OLD | NEW |