| 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 "canvas_painter.cc", |
| 11 "canvas_painter.h", |
| 10 "clip_transform_recorder.cc", | 12 "clip_transform_recorder.cc", |
| 11 "clip_transform_recorder.h", | 13 "clip_transform_recorder.h", |
| 12 "closure_animation_observer.cc", | 14 "closure_animation_observer.cc", |
| 13 "closure_animation_observer.h", | 15 "closure_animation_observer.h", |
| 14 "compositing_recorder.cc", | 16 "compositing_recorder.cc", |
| 15 "compositing_recorder.h", | 17 "compositing_recorder.h", |
| 16 "compositor.cc", | 18 "compositor.cc", |
| 17 "compositor.h", | 19 "compositor.h", |
| 18 "compositor_animation_observer.h", | 20 "compositor_animation_observer.h", |
| 19 "compositor_export.h", | 21 "compositor_export.h", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "//ui/gfx/geometry", | 182 "//ui/gfx/geometry", |
| 181 "//ui/gl", | 183 "//ui/gl", |
| 182 "//ui/resources", | 184 "//ui/resources", |
| 183 ] | 185 ] |
| 184 | 186 |
| 185 if (is_linux) { | 187 if (is_linux) { |
| 186 deps += [ "//third_party/mesa:osmesa" ] | 188 deps += [ "//third_party/mesa:osmesa" ] |
| 187 } | 189 } |
| 188 } | 190 } |
| 189 } | 191 } |
| OLD | NEW |