| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "transform_recorder.h", | 72 "transform_recorder.h", |
| 73 ] | 73 ] |
| 74 | 74 |
| 75 defines = [ "COMPOSITOR_IMPLEMENTATION" ] | 75 defines = [ "COMPOSITOR_IMPLEMENTATION" ] |
| 76 | 76 |
| 77 deps = [ | 77 deps = [ |
| 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/ipc:interfaces", |
| 82 "//cc/paint", | 83 "//cc/paint", |
| 83 "//cc/surfaces", | 84 "//cc/surfaces", |
| 84 "//cc/surfaces:surface_id", | 85 "//cc/surfaces:surface_id", |
| 85 "//cc/surfaces:surfaces", | 86 "//cc/surfaces:surfaces", |
| 87 "//components/display_compositor", |
| 86 "//gpu/command_buffer/common", | 88 "//gpu/command_buffer/common", |
| 87 "//skia", | 89 "//skia", |
| 88 "//ui/gfx", | 90 "//ui/gfx", |
| 89 "//ui/gfx/geometry", | 91 "//ui/gfx/geometry", |
| 90 "//ui/gl", | 92 "//ui/gl", |
| 91 ] | 93 ] |
| 92 | 94 |
| 93 if (is_win && use_aura) { | 95 if (is_win && use_aura) { |
| 94 # TODO(sky): before we make this real need to remove | 96 # TODO(sky): before we make this real need to remove |
| 95 # IDR_BITMAP_BRUSH_IMAGE. | 97 # IDR_BITMAP_BRUSH_IMAGE. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 ] | 138 ] |
| 137 | 139 |
| 138 public_deps = [ | 140 public_deps = [ |
| 139 ":compositor", | 141 ":compositor", |
| 140 ] | 142 ] |
| 141 deps = [ | 143 deps = [ |
| 142 "//base/test:test_support", | 144 "//base/test:test_support", |
| 143 "//cc", | 145 "//cc", |
| 144 "//cc:test_support", | 146 "//cc:test_support", |
| 145 "//cc/surfaces", | 147 "//cc/surfaces", |
| 148 "//components/display_compositor", |
| 146 "//gpu/command_buffer/client:gles2_c_lib", | 149 "//gpu/command_buffer/client:gles2_c_lib", |
| 147 "//gpu/command_buffer/client:gles2_implementation", | 150 "//gpu/command_buffer/client:gles2_implementation", |
| 148 "//gpu/command_buffer/common:gles2_utils", | 151 "//gpu/command_buffer/common:gles2_utils", |
| 149 "//gpu/ipc:gl_in_process_context", | 152 "//gpu/ipc:gl_in_process_context", |
| 150 "//gpu/skia_bindings", | 153 "//gpu/skia_bindings", |
| 151 "//skia", | 154 "//skia", |
| 152 "//testing/gtest", | 155 "//testing/gtest", |
| 153 "//ui/base", | 156 "//ui/base", |
| 154 "//ui/display", | 157 "//ui/display", |
| 155 "//ui/gfx", | 158 "//ui/gfx", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 "//ui/base", | 204 "//ui/base", |
| 202 "//ui/gfx", | 205 "//ui/gfx", |
| 203 "//ui/gfx/geometry", | 206 "//ui/gfx/geometry", |
| 204 "//ui/gl", | 207 "//ui/gl", |
| 205 "//ui/resources", | 208 "//ui/resources", |
| 206 ] | 209 ] |
| 207 if (is_linux) { | 210 if (is_linux) { |
| 208 deps += [ "//third_party/mesa:osmesa" ] | 211 deps += [ "//third_party/mesa:osmesa" ] |
| 209 } | 212 } |
| 210 } | 213 } |
| OLD | NEW |