Chromium Code Reviews| 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", | |
|
danakj
2015/07/22 18:25:27
This looks historical. Do we actually need this st
Dirk Pranke
2015/07/22 18:49:36
You're suggesting maybe we never need blink header
danakj
2015/07/22 19:03:14
I don't see any includes of third_party/WebKit in
sdefresne
2015/07/23 07:38:03
Done.
| |
| 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 |
| 143 if (!is_ios) { | |
| 144 deps += [ "//third_party/WebKit/public:blink_minimal" ] | |
| 145 } | |
| 146 | |
| 144 if (use_x11) { | 147 if (use_x11) { |
| 145 configs += [ "//build/config/linux:x11" ] | 148 configs += [ "//build/config/linux:x11" ] |
| 146 deps += [ "//ui/gfx/x" ] | 149 deps += [ "//ui/gfx/x" ] |
| 147 } | 150 } |
| 148 | 151 |
| 149 if (use_ozone) { | 152 if (use_ozone) { |
| 150 sources += [ "test/test_compositor_host_ozone.cc" ] | 153 sources += [ "test/test_compositor_host_ozone.cc" ] |
| 151 } else if (use_x11) { | 154 } else if (use_x11) { |
| 152 sources += [ "test/test_compositor_host_x11.cc" ] | 155 sources += [ "test/test_compositor_host_x11.cc" ] |
| 153 } | 156 } |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 182 "//ui/gfx/geometry", | 185 "//ui/gfx/geometry", |
| 183 "//ui/gl", | 186 "//ui/gl", |
| 184 "//ui/resources", | 187 "//ui/resources", |
| 185 ] | 188 ] |
| 186 | 189 |
| 187 if (is_linux) { | 190 if (is_linux) { |
| 188 deps += [ "//third_party/mesa:osmesa" ] | 191 deps += [ "//third_party/mesa:osmesa" ] |
| 189 } | 192 } |
| 190 } | 193 } |
| 191 } | 194 } |
| OLD | NEW |