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 | 6 |
7 component("compositor") { | 7 component("compositor") { |
8 sources = [ | 8 sources = [ |
9 "closure_animation_observer.cc", | 9 "closure_animation_observer.cc", |
10 "closure_animation_observer.h", | 10 "closure_animation_observer.h", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 "test/test_utils.cc", | 102 "test/test_utils.cc", |
103 "test/test_utils.h", | 103 "test/test_utils.h", |
104 ] | 104 ] |
105 | 105 |
106 public_deps = [ | 106 public_deps = [ |
107 ":compositor", | 107 ":compositor", |
108 ] | 108 ] |
109 deps = [ | 109 deps = [ |
110 "//base/test:test_support", | 110 "//base/test:test_support", |
111 "//cc", | 111 "//cc", |
| 112 "//cc/surfaces", |
112 "//cc:test_support", | 113 "//cc:test_support", |
113 "//skia", | 114 "//skia", |
114 "//testing/gtest", | 115 "//testing/gtest", |
115 "//third_party/WebKit/public:blink_minimal", | 116 "//third_party/WebKit/public:blink_minimal", |
116 "//ui/base", | 117 "//ui/base", |
117 "//ui/gfx", | 118 "//ui/gfx", |
118 "//ui/gfx/geometry", | 119 "//ui/gfx/geometry", |
119 "//ui/gl", | 120 "//ui/gl", |
120 "//webkit/common/gpu", | 121 "//webkit/common/gpu", |
121 ] | 122 ] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 # "//ui/gfx", | 159 # "//ui/gfx", |
159 # "//ui/gfx/geometry", | 160 # "//ui/gfx/geometry", |
160 # "//ui/gl", | 161 # "//ui/gl", |
161 # "//ui/resources", | 162 # "//ui/resources", |
162 # ] | 163 # ] |
163 # | 164 # |
164 # if (is_linux) { | 165 # if (is_linux) { |
165 # deps += [ "//third_party/mesa:osmesa" ] | 166 # deps += [ "//third_party/mesa:osmesa" ] |
166 # } | 167 # } |
167 #} | 168 #} |
OLD | NEW |