| 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 "callback_layer_animation_observer.cc", | 10 "callback_layer_animation_observer.cc", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "layer_animation_element.h", | 39 "layer_animation_element.h", |
| 40 "layer_animation_observer.cc", | 40 "layer_animation_observer.cc", |
| 41 "layer_animation_observer.h", | 41 "layer_animation_observer.h", |
| 42 "layer_animation_sequence.cc", | 42 "layer_animation_sequence.cc", |
| 43 "layer_animation_sequence.h", | 43 "layer_animation_sequence.h", |
| 44 "layer_animator.cc", | 44 "layer_animator.cc", |
| 45 "layer_animator.h", | 45 "layer_animator.h", |
| 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_owner.cc", | 50 "layer_owner.cc", |
| 50 "layer_owner.h", | 51 "layer_owner.h", |
| 51 "layer_threaded_animation_delegate.h", | 52 "layer_threaded_animation_delegate.h", |
| 52 "layer_tree_owner.cc", | 53 "layer_tree_owner.cc", |
| 53 "layer_tree_owner.h", | 54 "layer_tree_owner.h", |
| 54 "layer_type.h", | 55 "layer_type.h", |
| 55 "paint_cache.cc", | 56 "paint_cache.cc", |
| 56 "paint_cache.h", | 57 "paint_cache.h", |
| 57 "paint_context.cc", | 58 "paint_context.cc", |
| 58 "paint_context.h", | 59 "paint_context.h", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "//ui/base", | 197 "//ui/base", |
| 197 "//ui/gfx", | 198 "//ui/gfx", |
| 198 "//ui/gfx/geometry", | 199 "//ui/gfx/geometry", |
| 199 "//ui/gl", | 200 "//ui/gl", |
| 200 "//ui/resources", | 201 "//ui/resources", |
| 201 ] | 202 ] |
| 202 if (is_linux) { | 203 if (is_linux) { |
| 203 deps += [ "//third_party/mesa:osmesa" ] | 204 deps += [ "//third_party/mesa:osmesa" ] |
| 204 } | 205 } |
| 205 } | 206 } |
| OLD | NEW |