| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 ] | 133 ] |
| 134 | 134 |
| 135 public_deps = [ | 135 public_deps = [ |
| 136 ":compositor", | 136 ":compositor", |
| 137 ] | 137 ] |
| 138 deps = [ | 138 deps = [ |
| 139 "//base/test:test_support", | 139 "//base/test:test_support", |
| 140 "//cc", | 140 "//cc", |
| 141 "//cc:test_support", | 141 "//cc:test_support", |
| 142 "//cc/surfaces", | 142 "//cc/surfaces", |
| 143 "//gpu/command_buffer/client:gl_in_process_context", | |
| 144 "//gpu/command_buffer/client:gles2_c_lib", | 143 "//gpu/command_buffer/client:gles2_c_lib", |
| 145 "//gpu/command_buffer/client:gles2_implementation", | 144 "//gpu/command_buffer/client:gles2_implementation", |
| 146 "//gpu/command_buffer/common:gles2_utils", | 145 "//gpu/command_buffer/common:gles2_utils", |
| 146 "//gpu/ipc:gl_in_process_context", |
| 147 "//gpu/skia_bindings", | 147 "//gpu/skia_bindings", |
| 148 "//skia", | 148 "//skia", |
| 149 "//testing/gtest", | 149 "//testing/gtest", |
| 150 "//ui/base", | 150 "//ui/base", |
| 151 "//ui/display", | 151 "//ui/display", |
| 152 "//ui/gfx", | 152 "//ui/gfx", |
| 153 "//ui/gfx/geometry", | 153 "//ui/gfx/geometry", |
| 154 "//ui/gl:test_support", | 154 "//ui/gl:test_support", |
| 155 ] | 155 ] |
| 156 | 156 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "//ui/base", | 198 "//ui/base", |
| 199 "//ui/gfx", | 199 "//ui/gfx", |
| 200 "//ui/gfx/geometry", | 200 "//ui/gfx/geometry", |
| 201 "//ui/gl", | 201 "//ui/gl", |
| 202 "//ui/resources", | 202 "//ui/resources", |
| 203 ] | 203 ] |
| 204 if (is_linux) { | 204 if (is_linux) { |
| 205 deps += [ "//third_party/mesa:osmesa" ] | 205 deps += [ "//third_party/mesa:osmesa" ] |
| 206 } | 206 } |
| 207 } | 207 } |
| OLD | NEW |