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