| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//skia", | 79 "//skia", |
| 80 "//ui/gfx", | 80 "//ui/gfx", |
| 81 "//ui/gfx/geometry", | 81 "//ui/gfx/geometry", |
| 82 "//ui/gl", | 82 "//ui/gl", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 if (is_win && use_aura) { | 85 if (is_win && use_aura) { |
| 86 # TODO(sky): before we make this real need to remove | 86 # TODO(sky): before we make this real need to remove |
| 87 # IDR_BITMAP_BRUSH_IMAGE. | 87 # IDR_BITMAP_BRUSH_IMAGE. |
| 88 deps += [ | 88 deps += [ |
| 89 "//ui/resources", | |
| 90 "//third_party/angle:libEGL", | 89 "//third_party/angle:libEGL", |
| 91 "//third_party/angle:libGLESv2", | 90 "//third_party/angle:libGLESv2", |
| 91 "//ui/resources", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 } | 94 } |
| 95 | 95 |
| 96 source_set("test_support") { | 96 source_set("test_support") { |
| 97 testonly = true | 97 testonly = true |
| 98 sources = [ | 98 sources = [ |
| 99 "test/context_factories_for_test.cc", | 99 "test/context_factories_for_test.cc", |
| 100 "test/context_factories_for_test.h", | 100 "test/context_factories_for_test.h", |
| 101 "test/draw_waiter_for_test.cc", | 101 "test/draw_waiter_for_test.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 123 "test/test_utils.cc", | 123 "test/test_utils.cc", |
| 124 "test/test_utils.h", | 124 "test/test_utils.h", |
| 125 ] | 125 ] |
| 126 | 126 |
| 127 public_deps = [ | 127 public_deps = [ |
| 128 ":compositor", | 128 ":compositor", |
| 129 ] | 129 ] |
| 130 deps = [ | 130 deps = [ |
| 131 "//base/test:test_support", | 131 "//base/test:test_support", |
| 132 "//cc", | 132 "//cc", |
| 133 "//cc:test_support", |
| 133 "//cc/surfaces", | 134 "//cc/surfaces", |
| 134 "//cc:test_support", | |
| 135 "//gpu/command_buffer/client:gl_in_process_context", | 135 "//gpu/command_buffer/client:gl_in_process_context", |
| 136 "//gpu/command_buffer/client:gles2_c_lib", | 136 "//gpu/command_buffer/client:gles2_c_lib", |
| 137 "//gpu/command_buffer/client:gles2_implementation", | 137 "//gpu/command_buffer/client:gles2_implementation", |
| 138 "//gpu/command_buffer/common:gles2_utils", | 138 "//gpu/command_buffer/common:gles2_utils", |
| 139 "//gpu/skia_bindings", | 139 "//gpu/skia_bindings", |
| 140 "//skia", | 140 "//skia", |
| 141 "//testing/gtest", | 141 "//testing/gtest", |
| 142 "//ui/base", | 142 "//ui/base", |
| 143 "//ui/gfx", | 143 "//ui/gfx", |
| 144 "//ui/gfx/geometry", | 144 "//ui/gfx/geometry", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 "//ui/base", | 197 "//ui/base", |
| 198 "//ui/gfx", | 198 "//ui/gfx", |
| 199 "//ui/gfx/geometry", | 199 "//ui/gfx/geometry", |
| 200 "//ui/gl", | 200 "//ui/gl", |
| 201 "//ui/resources", | 201 "//ui/resources", |
| 202 ] | 202 ] |
| 203 if (is_linux) { | 203 if (is_linux) { |
| 204 deps += [ "//third_party/mesa:osmesa" ] | 204 deps += [ "//third_party/mesa:osmesa" ] |
| 205 } | 205 } |
| 206 } | 206 } |
| OLD | NEW |