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 "closure_animation_observer.cc", | 9 "closure_animation_observer.cc", |
10 "closure_animation_observer.h", | 10 "closure_animation_observer.h", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 "transform_animation_curve_adapter.cc", | 51 "transform_animation_curve_adapter.cc", |
52 "transform_animation_curve_adapter.h", | 52 "transform_animation_curve_adapter.h", |
53 ] | 53 ] |
54 | 54 |
55 defines = [ "COMPOSITOR_IMPLEMENTATION" ] | 55 defines = [ "COMPOSITOR_IMPLEMENTATION" ] |
56 | 56 |
57 deps = [ | 57 deps = [ |
58 "//base", | 58 "//base", |
59 "//base/third_party/dynamic_annotations", | 59 "//base/third_party/dynamic_annotations", |
60 "//cc", | 60 "//cc", |
| 61 "//cc/surfaces", |
61 "//gpu/command_buffer/common", | 62 "//gpu/command_buffer/common", |
62 "//skia", | 63 "//skia", |
63 "//ui/gfx", | 64 "//ui/gfx", |
64 "//ui/gfx/geometry", | 65 "//ui/gfx/geometry", |
65 "//ui/gl", | 66 "//ui/gl", |
66 ] | 67 ] |
67 | 68 |
68 if (is_win && use_aura) { | 69 if (is_win && use_aura) { |
69 # TODO(sky): before we make this real need to remove | 70 # TODO(sky): before we make this real need to remove |
70 # IDR_BITMAP_BRUSH_IMAGE. | 71 # IDR_BITMAP_BRUSH_IMAGE. |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 # "//ui/gfx", | 155 # "//ui/gfx", |
155 # "//ui/gfx/geometry", | 156 # "//ui/gfx/geometry", |
156 # "//ui/gl", | 157 # "//ui/gl", |
157 # "//ui/resources", | 158 # "//ui/resources", |
158 # ] | 159 # ] |
159 # | 160 # |
160 # if (is_linux) { | 161 # if (is_linux) { |
161 # deps += [ "//third_party/mesa:osmesa" ] | 162 # deps += [ "//third_party/mesa:osmesa" ] |
162 # } | 163 # } |
163 #} | 164 #} |
OLD | NEW |