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 "closure_animation_observer.cc", | 10 "closure_animation_observer.cc", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 ] | 108 ] |
109 | 109 |
110 public_deps = [ | 110 public_deps = [ |
111 ":compositor", | 111 ":compositor", |
112 ] | 112 ] |
113 deps = [ | 113 deps = [ |
114 "//base/test:test_support", | 114 "//base/test:test_support", |
115 "//cc", | 115 "//cc", |
116 "//cc/surfaces", | 116 "//cc/surfaces", |
117 "//cc:test_support", | 117 "//cc:test_support", |
| 118 "//gpu/command_buffer/client:gl_in_process_context", |
| 119 "//gpu/command_buffer/client:gles2_c_lib", |
| 120 "//gpu/command_buffer/client:gles2_implementation", |
| 121 "//gpu/command_buffer/common:gles2_utils", |
| 122 "//gpu/skia_bindings", |
118 "//skia", | 123 "//skia", |
119 "//testing/gtest", | 124 "//testing/gtest", |
120 "//third_party/WebKit/public:blink_minimal", | 125 "//third_party/WebKit/public:blink_minimal", |
121 "//ui/base", | 126 "//ui/base", |
122 "//ui/gfx", | 127 "//ui/gfx", |
123 "//ui/gfx/geometry", | 128 "//ui/gfx/geometry", |
124 "//ui/gl", | 129 "//ui/gl", |
125 ] | 130 ] |
126 | 131 |
127 if (use_x11) { | 132 if (use_x11) { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 # "//ui/gfx", | 166 # "//ui/gfx", |
162 # "//ui/gfx/geometry", | 167 # "//ui/gfx/geometry", |
163 # "//ui/gl", | 168 # "//ui/gl", |
164 # "//ui/resources", | 169 # "//ui/resources", |
165 # ] | 170 # ] |
166 # | 171 # |
167 # if (is_linux) { | 172 # if (is_linux) { |
168 # deps += [ "//third_party/mesa:osmesa" ] | 173 # deps += [ "//third_party/mesa:osmesa" ] |
169 # } | 174 # } |
170 #} | 175 #} |
OLD | NEW |