| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//base", | 78 "//base", |
| 79 "//base/third_party/dynamic_annotations", | 79 "//base/third_party/dynamic_annotations", |
| 80 "//cc", | 80 "//cc", |
| 81 "//cc/animation", | 81 "//cc/animation", |
| 82 "//cc/paint", | 82 "//cc/paint", |
| 83 "//cc/surfaces", | 83 "//cc/surfaces", |
| 84 "//cc/surfaces:surface_id", | 84 "//cc/surfaces:surface_id", |
| 85 "//cc/surfaces:surfaces", | 85 "//cc/surfaces:surfaces", |
| 86 "//gpu/command_buffer/common", | 86 "//gpu/command_buffer/common", |
| 87 "//skia", | 87 "//skia", |
| 88 "//ui/base", | 88 "//ui/display", |
| 89 "//ui/gfx", | 89 "//ui/gfx", |
| 90 "//ui/gfx/animation", | 90 "//ui/gfx/animation", |
| 91 "//ui/gfx/geometry", | 91 "//ui/gfx/geometry", |
| 92 "//ui/gl", | 92 "//ui/gl", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 if (is_win && use_aura) { | 95 if (is_win && use_aura) { |
| 96 # TODO(sky): before we make this real need to remove | 96 # TODO(sky): before we make this real need to remove |
| 97 # IDR_BITMAP_BRUSH_IMAGE. | 97 # IDR_BITMAP_BRUSH_IMAGE. |
| 98 deps += [ | 98 deps += [ |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "//ui/base", | 207 "//ui/base", |
| 208 "//ui/gfx", | 208 "//ui/gfx", |
| 209 "//ui/gfx/geometry", | 209 "//ui/gfx/geometry", |
| 210 "//ui/gl", | 210 "//ui/gl", |
| 211 "//ui/resources", | 211 "//ui/resources", |
| 212 ] | 212 ] |
| 213 if (is_linux) { | 213 if (is_linux) { |
| 214 deps += [ "//third_party/mesa:osmesa" ] | 214 deps += [ "//third_party/mesa:osmesa" ] |
| 215 } | 215 } |
| 216 } | 216 } |
| OLD | NEW |