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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 if (is_chromeos && current_cpu != "arm") { | 10 if (is_chromeos && current_cpu != "arm") { |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 "sandbox_linux/sandbox_bpf_base_policy_linux.cc", | 200 "sandbox_linux/sandbox_bpf_base_policy_linux.cc", |
201 "sandbox_linux/sandbox_bpf_base_policy_linux.h", | 201 "sandbox_linux/sandbox_bpf_base_policy_linux.h", |
202 ] | 202 ] |
203 set_sources_assignment_filter(sources_assignment_filter) | 203 set_sources_assignment_filter(sources_assignment_filter) |
204 } | 204 } |
205 | 205 |
206 if (is_mac) { | 206 if (is_mac) { |
207 sources += [ | 207 sources += [ |
208 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", | 208 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", |
209 "gpu/client/gpu_memory_buffer_impl_io_surface.h", | 209 "gpu/client/gpu_memory_buffer_impl_io_surface.h", |
210 "gpu/gpu_memory_buffer_factory_io_surface.cc", | |
211 "gpu/gpu_memory_buffer_factory_io_surface.h", | |
212 "gpu/media/vt.h", | |
213 "gpu/media/vt_video_decode_accelerator.cc", | |
214 "gpu/media/vt_video_decode_accelerator.h", | |
215 ] + get_target_outputs(":libvt_generate_stubs") | 210 ] + get_target_outputs(":libvt_generate_stubs") |
216 | 211 |
217 sources -= [ "plugin_list_posix.cc" ] | 212 sources -= [ "plugin_list_posix.cc" ] |
218 | 213 |
219 deps += [ | 214 deps += [ |
220 ":libvt_generate_stubs", | 215 ":libvt_generate_stubs", |
221 "//content/app/resources", | 216 "//content/app/resources", |
222 "//content:resources", | 217 "//content:resources", |
223 "//third_party/WebKit/public:image_resources", | 218 "//third_party/WebKit/public:image_resources", |
224 "//third_party/WebKit/public:resources", | 219 "//third_party/WebKit/public:resources", |
225 "//ui/accelerated_widget_mac", | 220 "//ui/accelerated_widget_mac", |
226 ] | 221 ] |
227 libs += [ | 222 libs += [ "QuartzCore.framework" ] |
228 "IOSurface.framework", | |
229 "OpenGL.framework", | |
230 "QuartzCore.framework", | |
231 ] | |
232 } | 223 } |
233 | 224 |
234 if (is_android) { | 225 if (is_android) { |
235 sources += [ | 226 sources += [ |
236 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", | 227 "gpu/client/gpu_memory_buffer_impl_surface_texture.cc", |
237 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", | 228 "gpu/client/gpu_memory_buffer_impl_surface_texture.h", |
238 "gpu/gpu_memory_buffer_factory_surface_texture.cc", | 229 "gpu/gpu_memory_buffer_factory_surface_texture.cc", |
239 "gpu/gpu_memory_buffer_factory_surface_texture.h", | 230 "gpu/gpu_memory_buffer_factory_surface_texture.h", |
240 ] | 231 ] |
241 | 232 |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 "permission_service.mojom", | 470 "permission_service.mojom", |
480 "presentation/presentation_service.mojom", | 471 "presentation/presentation_service.mojom", |
481 "render_frame_setup.mojom", | 472 "render_frame_setup.mojom", |
482 ] | 473 ] |
483 | 474 |
484 deps = [ | 475 deps = [ |
485 "//content/public/common:mojo_bindings", | 476 "//content/public/common:mojo_bindings", |
486 "//third_party/mojo/src/mojo/public/interfaces/application:application", | 477 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
487 ] | 478 ] |
488 } | 479 } |
OLD | NEW |