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