| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "scoped_layer_animation_settings.cc", | 67 "scoped_layer_animation_settings.cc", |
| 68 "scoped_layer_animation_settings.h", | 68 "scoped_layer_animation_settings.h", |
| 69 "transform_animation_curve_adapter.cc", | 69 "transform_animation_curve_adapter.cc", |
| 70 "transform_animation_curve_adapter.h", | 70 "transform_animation_curve_adapter.h", |
| 71 "transform_recorder.cc", | 71 "transform_recorder.cc", |
| 72 "transform_recorder.h", | 72 "transform_recorder.h", |
| 73 ] | 73 ] |
| 74 | 74 |
| 75 defines = [ "COMPOSITOR_IMPLEMENTATION" ] | 75 defines = [ "COMPOSITOR_IMPLEMENTATION" ] |
| 76 | 76 |
| 77 public_deps = [ |
| 78 "//cc/paint", |
| 79 ] |
| 80 |
| 77 deps = [ | 81 deps = [ |
| 78 "//base", | 82 "//base", |
| 79 "//base/third_party/dynamic_annotations", | 83 "//base/third_party/dynamic_annotations", |
| 80 "//cc", | 84 "//cc", |
| 81 "//cc/animation", | 85 "//cc/animation", |
| 82 "//cc/surfaces", | 86 "//cc/surfaces", |
| 83 "//cc/surfaces:surface_id", | 87 "//cc/surfaces:surface_id", |
| 84 "//cc/surfaces:surfaces", | 88 "//cc/surfaces:surfaces", |
| 85 "//gpu/command_buffer/common", | 89 "//gpu/command_buffer/common", |
| 86 "//skia", | 90 "//skia", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "//ui/base", | 204 "//ui/base", |
| 201 "//ui/gfx", | 205 "//ui/gfx", |
| 202 "//ui/gfx/geometry", | 206 "//ui/gfx/geometry", |
| 203 "//ui/gl", | 207 "//ui/gl", |
| 204 "//ui/resources", | 208 "//ui/resources", |
| 205 ] | 209 ] |
| 206 if (is_linux) { | 210 if (is_linux) { |
| 207 deps += [ "//third_party/mesa:osmesa" ] | 211 deps += [ "//third_party/mesa:osmesa" ] |
| 208 } | 212 } |
| 209 } | 213 } |
| OLD | NEW |