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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 "//third_party/libyuv", | 467 "//third_party/libyuv", |
468 "//third_party/opus", | 468 "//third_party/opus", |
469 "//ui/events:events_base", | 469 "//ui/events:events_base", |
470 "//ui/gfx", | 470 "//ui/gfx", |
471 "//ui/gfx/geometry", | 471 "//ui/gfx/geometry", |
472 "//ui/gl:gl", | 472 "//ui/gl:gl", |
473 "//url", | 473 "//url", |
474 ] | 474 ] |
475 } | 475 } |
476 | 476 |
477 source_set("cdm_paths") { | |
478 sources = [ | |
479 "cdm/cdm_paths.cc", | |
480 "cdm/cdm_paths.h", | |
481 ] | |
482 deps = [ | |
483 "//base", | |
484 ] | |
485 } | |
486 | |
487 # Minimal media component for media/cast on iOS. | 477 # Minimal media component for media/cast on iOS. |
488 if (is_ios) { | 478 if (is_ios) { |
489 component("media_for_cast_ios") { | 479 component("media_for_cast_ios") { |
490 configs += [ | 480 configs += [ |
491 ":media_config", | 481 ":media_config", |
492 ":media_implementation", | 482 ":media_implementation", |
493 ] | 483 ] |
494 all_dependent_configs = [ ":media_dependent_config" ] | 484 all_dependent_configs = [ ":media_dependent_config" ] |
495 include_dirs = [ "." ] | 485 include_dirs = [ "." ] |
496 libs = [ "CoreVideo.framework" ] | 486 libs = [ "CoreVideo.framework" ] |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 data = [ | 559 data = [ |
570 "test/data/", | 560 "test/data/", |
571 ] | 561 ] |
572 | 562 |
573 # TODO(wolenetz): Fix size_t to int truncation in win64. | 563 # TODO(wolenetz): Fix size_t to int truncation in win64. |
574 # See http://crbug.com/171009 | 564 # See http://crbug.com/171009 |
575 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 565 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
576 | 566 |
577 deps = [ | 567 deps = [ |
578 ":cdm_api", | 568 ":cdm_api", |
579 ":cdm_paths", | |
580 ":media", | 569 ":media", |
581 ":test_support", | 570 ":test_support", |
582 "//base/test:test_support", | 571 "//base/test:test_support", |
583 "//gpu:test_support", | 572 "//gpu:test_support", |
584 "//gpu/command_buffer/common", | 573 "//gpu/command_buffer/common", |
585 "//media/audio:test_support", | 574 "//media/audio:test_support", |
586 "//media/audio:unittests", | 575 "//media/audio:unittests", |
587 "//media/base:test_support", | 576 "//media/base:test_support", |
588 "//media/base:unittests", | 577 "//media/base:unittests", |
589 "//media/capture:unittests", | 578 "//media/capture:unittests", |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
867 sources = [ | 856 sources = [ |
868 "filters/vpx_video_decoder_fuzzertest.cc", | 857 "filters/vpx_video_decoder_fuzzertest.cc", |
869 ] | 858 ] |
870 deps = [ | 859 deps = [ |
871 ":media", | 860 ":media", |
872 "//base", | 861 "//base", |
873 ] | 862 ] |
874 libfuzzer_options = [ "max_len = 400000" ] | 863 libfuzzer_options = [ "max_len = 400000" ] |
875 seed_corpus = "//media/test/data" | 864 seed_corpus = "//media/test/data" |
876 } | 865 } |
OLD | NEW |