| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 "//ui/gfx/geometry", | 432 "//ui/gfx/geometry", |
| 433 "//ui/gl", | 433 "//ui/gl", |
| 434 "//ui/gl:test_support", | 434 "//ui/gl:test_support", |
| 435 ] | 435 ] |
| 436 configs += [ | 436 configs += [ |
| 437 "//third_party/libva:libva_config", | 437 "//third_party/libva:libva_config", |
| 438 "//third_party/libyuv:libyuv_config", | 438 "//third_party/libyuv:libyuv_config", |
| 439 ":gpu_config", | 439 ":gpu_config", |
| 440 ] | 440 ] |
| 441 sources = [ | 441 sources = [ |
| 442 "h264_decoder.cc", |
| 443 "h264_decoder.h", |
| 444 "h264_dpb.cc", |
| 445 "h264_dpb.h", |
| 442 "video_accelerator_unittest_helpers.h", | 446 "video_accelerator_unittest_helpers.h", |
| 443 "video_encode_accelerator_unittest.cc", | 447 "video_encode_accelerator_unittest.cc", |
| 444 ] | 448 ] |
| 445 if (use_x11) { | 449 if (use_x11) { |
| 446 deps += [ "//ui/gfx/x" ] | 450 deps += [ "//ui/gfx/x" ] |
| 447 } | 451 } |
| 448 if (use_ozone) { | 452 if (use_ozone) { |
| 449 deps += [ "//ui/ozone" ] | 453 deps += [ "//ui/ozone" ] |
| 450 } | 454 } |
| 451 } | 455 } |
| (...skipping 25 matching lines...) Expand all Loading... |
| 477 "video_accelerator_unittest_helpers.h", | 481 "video_accelerator_unittest_helpers.h", |
| 478 ] | 482 ] |
| 479 if (use_x11) { | 483 if (use_x11) { |
| 480 deps += [ "//ui/gfx/x" ] | 484 deps += [ "//ui/gfx/x" ] |
| 481 } | 485 } |
| 482 if (use_ozone) { | 486 if (use_ozone) { |
| 483 deps += [ "//ui/ozone" ] | 487 deps += [ "//ui/ozone" ] |
| 484 } | 488 } |
| 485 } | 489 } |
| 486 } | 490 } |
| OLD | NEW |