| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 } | 375 } |
| 376 if (current_cpu == "arm") { | 376 if (current_cpu == "arm") { |
| 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_jpeg_decode_accelerator.cc", |
| 386 "gpu/media/vaapi_jpeg_decode_accelerator.h", |
| 387 "gpu/media/vaapi_jpeg_decoder.cc", |
| 388 "gpu/media/vaapi_jpeg_decoder.h", |
| 385 "gpu/media/vaapi_picture.cc", | 389 "gpu/media/vaapi_picture.cc", |
| 386 "gpu/media/vaapi_picture.h", | 390 "gpu/media/vaapi_picture.h", |
| 387 "gpu/media/vaapi_video_decode_accelerator.cc", | 391 "gpu/media/vaapi_video_decode_accelerator.cc", |
| 388 "gpu/media/vaapi_video_decode_accelerator.h", | 392 "gpu/media/vaapi_video_decode_accelerator.h", |
| 389 "gpu/media/vaapi_video_encode_accelerator.cc", | 393 "gpu/media/vaapi_video_encode_accelerator.cc", |
| 390 "gpu/media/vaapi_video_encode_accelerator.h", | 394 "gpu/media/vaapi_video_encode_accelerator.h", |
| 391 "gpu/media/vaapi_wrapper.cc", | 395 "gpu/media/vaapi_wrapper.cc", |
| 392 "gpu/media/vaapi_wrapper.h", | 396 "gpu/media/vaapi_wrapper.h", |
| 393 ] + get_target_outputs(":libva_generate_stubs") | 397 ] + get_target_outputs(":libva_generate_stubs") |
| 394 configs += [ | 398 configs += [ |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 "render_frame_setup.mojom", | 494 "render_frame_setup.mojom", |
| 491 ] | 495 ] |
| 492 | 496 |
| 493 import_dirs = [ "//mojo/services" ] | 497 import_dirs = [ "//mojo/services" ] |
| 494 | 498 |
| 495 deps = [ | 499 deps = [ |
| 496 "//content/public/common:mojo_bindings", | 500 "//content/public/common:mojo_bindings", |
| 497 "//mojo/application/public/interfaces", | 501 "//mojo/application/public/interfaces", |
| 498 ] | 502 ] |
| 499 } | 503 } |
| OLD | NEW |