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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
377 sources += [ | 377 sources += [ |
378 "gpu/media/tegra_v4l2_device.cc", | 378 "gpu/media/tegra_v4l2_device.cc", |
379 "gpu/media/tegra_v4l2_device.h", | 379 "gpu/media/tegra_v4l2_device.h", |
380 ] | 380 ] |
381 } | 381 } |
382 if (current_cpu != "arm") { | 382 if (current_cpu != "arm") { |
383 sources += [ | 383 sources += [ |
384 "gpu/media/va_surface.h", | 384 "gpu/media/va_surface.h", |
385 "gpu/media/vaapi_picture.cc", | 385 "gpu/media/vaapi_picture.cc", |
386 "gpu/media/vaapi_picture.h", | 386 "gpu/media/vaapi_picture.h", |
387 "gpu/media/vaapi_jpeg_decode_accelerator.cc", | |
Pawel Osciak
2015/05/28 09:13:17
Nit: Please fix order (above vaapi_picture).
kcwu
2015/05/28 12:10:27
Done.
| |
388 "gpu/media/vaapi_jpeg_decode_accelerator.h", | |
387 "gpu/media/vaapi_video_decode_accelerator.cc", | 389 "gpu/media/vaapi_video_decode_accelerator.cc", |
388 "gpu/media/vaapi_video_decode_accelerator.h", | 390 "gpu/media/vaapi_video_decode_accelerator.h", |
389 "gpu/media/vaapi_video_encode_accelerator.cc", | 391 "gpu/media/vaapi_video_encode_accelerator.cc", |
390 "gpu/media/vaapi_video_encode_accelerator.h", | 392 "gpu/media/vaapi_video_encode_accelerator.h", |
391 "gpu/media/vaapi_wrapper.cc", | 393 "gpu/media/vaapi_wrapper.cc", |
392 "gpu/media/vaapi_wrapper.h", | 394 "gpu/media/vaapi_wrapper.h", |
393 ] + get_target_outputs(":libva_generate_stubs") | 395 ] + get_target_outputs(":libva_generate_stubs") |
394 configs += [ | 396 configs += [ |
395 "//third_party/libva:libva_config", | 397 "//third_party/libva:libva_config", |
396 "//third_party/libyuv:libyuv_config", | 398 "//third_party/libyuv:libyuv_config", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
487 "permission_service.mojom", | 489 "permission_service.mojom", |
488 "presentation/presentation_service.mojom", | 490 "presentation/presentation_service.mojom", |
489 "render_frame_setup.mojom", | 491 "render_frame_setup.mojom", |
490 ] | 492 ] |
491 | 493 |
492 deps = [ | 494 deps = [ |
493 "//content/public/common:mojo_bindings", | 495 "//content/public/common:mojo_bindings", |
494 "//mojo/application/public/interfaces", | 496 "//mojo/application/public/interfaces", |
495 ] | 497 ] |
496 } | 498 } |
OLD | NEW |