| 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 "canvas_painter.cc", | 10 "canvas_painter.cc", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "//cc", | 127 "//cc", |
| 128 "//cc/surfaces", | 128 "//cc/surfaces", |
| 129 "//cc:test_support", | 129 "//cc:test_support", |
| 130 "//gpu/command_buffer/client:gl_in_process_context", | 130 "//gpu/command_buffer/client:gl_in_process_context", |
| 131 "//gpu/command_buffer/client:gles2_c_lib", | 131 "//gpu/command_buffer/client:gles2_c_lib", |
| 132 "//gpu/command_buffer/client:gles2_implementation", | 132 "//gpu/command_buffer/client:gles2_implementation", |
| 133 "//gpu/command_buffer/common:gles2_utils", | 133 "//gpu/command_buffer/common:gles2_utils", |
| 134 "//gpu/skia_bindings", | 134 "//gpu/skia_bindings", |
| 135 "//skia", | 135 "//skia", |
| 136 "//testing/gtest", | 136 "//testing/gtest", |
| 137 "//third_party/WebKit/public:blink_minimal", | |
| 138 "//ui/base", | 137 "//ui/base", |
| 139 "//ui/gfx", | 138 "//ui/gfx", |
| 140 "//ui/gfx/geometry", | 139 "//ui/gfx/geometry", |
| 141 "//ui/gl", | 140 "//ui/gl", |
| 142 ] | 141 ] |
| 143 | 142 |
| 144 if (use_x11) { | 143 if (use_x11) { |
| 145 configs += [ "//build/config/linux:x11" ] | 144 configs += [ "//build/config/linux:x11" ] |
| 146 deps += [ "//ui/gfx/x" ] | 145 deps += [ "//ui/gfx/x" ] |
| 147 } | 146 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "//ui/gfx/geometry", | 181 "//ui/gfx/geometry", |
| 183 "//ui/gl", | 182 "//ui/gl", |
| 184 "//ui/resources", | 183 "//ui/resources", |
| 185 ] | 184 ] |
| 186 | 185 |
| 187 if (is_linux) { | 186 if (is_linux) { |
| 188 deps += [ "//third_party/mesa:osmesa" ] | 187 deps += [ "//third_party/mesa:osmesa" ] |
| 189 } | 188 } |
| 190 } | 189 } |
| 191 } | 190 } |
| OLD | NEW |