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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 sources += [ | 361 sources += [ |
362 "gpu/media/tegra_v4l2_device.cc", | 362 "gpu/media/tegra_v4l2_device.cc", |
363 "gpu/media/tegra_v4l2_device.h", | 363 "gpu/media/tegra_v4l2_device.h", |
364 ] | 364 ] |
365 } | 365 } |
366 if (current_cpu != "arm") { | 366 if (current_cpu != "arm") { |
367 sources += [ | 367 sources += [ |
368 "gpu/media/va_surface.h", | 368 "gpu/media/va_surface.h", |
369 "gpu/media/vaapi_picture.cc", | 369 "gpu/media/vaapi_picture.cc", |
370 "gpu/media/vaapi_picture.h", | 370 "gpu/media/vaapi_picture.h", |
| 371 "gpu/media/vaapi_jpeg_decode_accelerator.cc", |
| 372 "gpu/media/vaapi_jpeg_decode_accelerator.h", |
371 "gpu/media/vaapi_video_decode_accelerator.cc", | 373 "gpu/media/vaapi_video_decode_accelerator.cc", |
372 "gpu/media/vaapi_video_decode_accelerator.h", | 374 "gpu/media/vaapi_video_decode_accelerator.h", |
373 "gpu/media/vaapi_video_encode_accelerator.cc", | 375 "gpu/media/vaapi_video_encode_accelerator.cc", |
374 "gpu/media/vaapi_video_encode_accelerator.h", | 376 "gpu/media/vaapi_video_encode_accelerator.h", |
375 "gpu/media/vaapi_wrapper.cc", | 377 "gpu/media/vaapi_wrapper.cc", |
376 "gpu/media/vaapi_wrapper.h", | 378 "gpu/media/vaapi_wrapper.h", |
377 ] + get_target_outputs(":libva_generate_stubs") | 379 ] + get_target_outputs(":libva_generate_stubs") |
378 configs += [ | 380 configs += [ |
379 "//third_party/libva:libva_config", | 381 "//third_party/libva:libva_config", |
380 "//third_party/libyuv:libyuv_config", | 382 "//third_party/libyuv:libyuv_config", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 "permission_service.mojom", | 472 "permission_service.mojom", |
471 "presentation/presentation_service.mojom", | 473 "presentation/presentation_service.mojom", |
472 "render_frame_setup.mojom", | 474 "render_frame_setup.mojom", |
473 ] | 475 ] |
474 | 476 |
475 deps = [ | 477 deps = [ |
476 "//content/public/common:mojo_bindings", | 478 "//content/public/common:mojo_bindings", |
477 "//third_party/mojo/src/mojo/public/interfaces/application:application", | 479 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
478 ] | 480 ] |
479 } | 481 } |
OLD | NEW |