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("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 if (is_chromeos && cpu_arch != "arm") { | 10 if (is_chromeos && cpu_arch != "arm") { |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 "gpu/media/v4l2_video_device.h", | 295 "gpu/media/v4l2_video_device.h", |
296 "gpu/media/v4l2_video_encode_accelerator.cc", | 296 "gpu/media/v4l2_video_encode_accelerator.cc", |
297 "gpu/media/v4l2_video_encode_accelerator.h", | 297 "gpu/media/v4l2_video_encode_accelerator.h", |
298 ] | 298 ] |
299 libs = [ | 299 libs = [ |
300 "EGL", | 300 "EGL", |
301 "GLESv2", | 301 "GLESv2", |
302 ] | 302 ] |
303 if (cpu_arch == "arm") { | 303 if (cpu_arch == "arm") { |
304 sources += [ | 304 sources += [ |
| 305 "gpu/media/accelerated_video_decoder.h", |
| 306 "gpu/media/h264_decoder.cc", |
| 307 "gpu/media/h264_decoder.h", |
| 308 "gpu/media/h264_dpb.cc", |
| 309 "gpu/media/h264_dpb.h", |
305 "gpu/media/tegra_v4l2_video_device.cc", | 310 "gpu/media/tegra_v4l2_video_device.cc", |
306 "gpu/media/tegra_v4l2_video_device.h", | 311 "gpu/media/tegra_v4l2_video_device.h", |
| 312 "gpu/media/v4l2_slice_video_decode_accelerator.cc", |
| 313 "gpu/media/v4l2_slice_video_decode_accelerator.h", |
| 314 "gpu/media/vp8_decoder.cc", |
| 315 "gpu/media/vp8_decoder.h", |
| 316 "gpu/media/vp8_picture.cc", |
| 317 "gpu/media/vp8_picture.h", |
307 ] | 318 ] |
308 } | 319 } |
309 } | 320 } |
310 if (cpu_arch != "arm") { | 321 if (cpu_arch != "arm") { |
311 sources += [ | 322 sources += [ |
312 "gpu/media/h264_dpb.cc", | |
313 "gpu/media/h264_dpb.h", | |
314 "gpu/media/va_surface.h", | 323 "gpu/media/va_surface.h", |
315 "gpu/media/vaapi_h264_decoder.cc", | 324 "gpu/media/vaapi_h264_decoder.cc", |
316 "gpu/media/vaapi_h264_decoder.h", | 325 "gpu/media/vaapi_h264_decoder.h", |
| 326 "gpu/media/vaapi_h264_dpb.cc", |
| 327 "gpu/media/vaapi_h264_dpb.h", |
317 "gpu/media/vaapi_picture.cc", | 328 "gpu/media/vaapi_picture.cc", |
318 "gpu/media/vaapi_picture.h", | 329 "gpu/media/vaapi_picture.h", |
319 "gpu/media/vaapi_video_decode_accelerator.cc", | 330 "gpu/media/vaapi_video_decode_accelerator.cc", |
320 "gpu/media/vaapi_video_decode_accelerator.h", | 331 "gpu/media/vaapi_video_decode_accelerator.h", |
321 "gpu/media/vaapi_video_encode_accelerator.cc", | 332 "gpu/media/vaapi_video_encode_accelerator.cc", |
322 "gpu/media/vaapi_video_encode_accelerator.h", | 333 "gpu/media/vaapi_video_encode_accelerator.h", |
323 "gpu/media/vaapi_wrapper.cc", | 334 "gpu/media/vaapi_wrapper.cc", |
324 "gpu/media/vaapi_wrapper.h", | 335 "gpu/media/vaapi_wrapper.h", |
325 ] + get_target_outputs(":libva_generate_stubs") | 336 ] + get_target_outputs(":libva_generate_stubs") |
326 configs += [ | 337 configs += [ |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 "geolocation_service.mojom", | 406 "geolocation_service.mojom", |
396 "permission_service.mojom", | 407 "permission_service.mojom", |
397 "render_frame_setup.mojom", | 408 "render_frame_setup.mojom", |
398 ] | 409 ] |
399 | 410 |
400 deps = [ | 411 deps = [ |
401 "//content/public/common:mojo_bindings", | 412 "//content/public/common:mojo_bindings", |
402 "//mojo/public/interfaces/application:application", | 413 "//mojo/public/interfaces/application:application", |
403 ] | 414 ] |
404 } | 415 } |
OLD | NEW |