| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 "//third_party/libwebm", | 476 "//third_party/libwebm", |
| 477 "//third_party/libyuv", | 477 "//third_party/libyuv", |
| 478 "//ui/events:events_base", | 478 "//ui/events:events_base", |
| 479 "//ui/gfx", | 479 "//ui/gfx", |
| 480 "//ui/gfx/geometry", | 480 "//ui/gfx/geometry", |
| 481 "//ui/gl:gl", | 481 "//ui/gl:gl", |
| 482 "//url", | 482 "//url", |
| 483 ] | 483 ] |
| 484 } | 484 } |
| 485 | 485 |
| 486 source_set("cdm_paths") { | 486 static_library("cdm_paths") { |
| 487 sources = [ | 487 sources = [ |
| 488 "cdm/cdm_paths.cc", | 488 "cdm/cdm_paths.cc", |
| 489 "cdm/cdm_paths.h", | 489 "cdm/cdm_paths.h", |
| 490 ] | 490 ] |
| 491 deps = [ | 491 deps = [ |
| 492 "//base", | 492 "//base", |
| 493 ] | 493 ] |
| 494 } | 494 } |
| 495 | 495 |
| 496 # Minimal media component for media/cast on iOS. | 496 # Minimal media component for media/cast on iOS. |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 ] | 748 ] |
| 749 deps = [ | 749 deps = [ |
| 750 ":test_support", | 750 ":test_support", |
| 751 "//base/test:test_support", | 751 "//base/test:test_support", |
| 752 "//media/audio:unittests", | 752 "//media/audio:unittests", |
| 753 "//media/base:test_support", | 753 "//media/base:test_support", |
| 754 "//ui/gfx:test_support", | 754 "//ui/gfx:test_support", |
| 755 ] | 755 ] |
| 756 } | 756 } |
| 757 | 757 |
| 758 source_set("test_support") { | 758 static_library("test_support") { |
| 759 testonly = true | 759 testonly = true |
| 760 sources = [ | 760 sources = [ |
| 761 "renderers/mock_gpu_memory_buffer_video_frame_pool.cc", | 761 "renderers/mock_gpu_memory_buffer_video_frame_pool.cc", |
| 762 "renderers/mock_gpu_memory_buffer_video_frame_pool.h", | 762 "renderers/mock_gpu_memory_buffer_video_frame_pool.h", |
| 763 "renderers/mock_gpu_video_accelerator_factories.cc", | 763 "renderers/mock_gpu_video_accelerator_factories.cc", |
| 764 "renderers/mock_gpu_video_accelerator_factories.h", | 764 "renderers/mock_gpu_video_accelerator_factories.h", |
| 765 "video/mock_video_decode_accelerator.cc", | 765 "video/mock_video_decode_accelerator.cc", |
| 766 "video/mock_video_decode_accelerator.h", | 766 "video/mock_video_decode_accelerator.h", |
| 767 ] | 767 ] |
| 768 public_deps = [ | 768 public_deps = [ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 sources = [ | 880 sources = [ |
| 881 "filters/vpx_video_decoder_fuzzertest.cc", | 881 "filters/vpx_video_decoder_fuzzertest.cc", |
| 882 ] | 882 ] |
| 883 deps = [ | 883 deps = [ |
| 884 ":media", | 884 ":media", |
| 885 "//base", | 885 "//base", |
| 886 ] | 886 ] |
| 887 libfuzzer_options = [ "max_len = 400000" ] | 887 libfuzzer_options = [ "max_len = 400000" ] |
| 888 seed_corpus = "//media/test/data" | 888 seed_corpus = "//media/test/data" |
| 889 } | 889 } |
| OLD | NEW |