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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
593 deps = [ | 593 deps = [ |
594 ":cdm_api", | 594 ":cdm_api", |
595 ":cdm_paths", | 595 ":cdm_paths", |
596 ":media", | 596 ":media", |
597 ":test_support", | 597 ":test_support", |
598 "//base/test:test_support", | 598 "//base/test:test_support", |
599 "//gpu:test_support", | 599 "//gpu:test_support", |
600 "//gpu/command_buffer/common", | 600 "//gpu/command_buffer/common", |
601 "//media/audio:test_support", | 601 "//media/audio:test_support", |
602 "//media/audio:unittests", | 602 "//media/audio:unittests", |
603 "//media/base", | |
miu
2016/09/30 08:12:10
Is this still needed?
xjz
2016/10/01 00:28:41
Removed.
| |
603 "//media/base:test_support", | 604 "//media/base:test_support", |
604 "//media/base:unittests", | 605 "//media/base:unittests", |
605 "//media/test:pipeline_integration_tests", | 606 "//media/test:pipeline_integration_tests", |
606 "//skia", # Direct dependency required to inherit config. | 607 "//skia", # Direct dependency required to inherit config. |
607 "//testing/gmock", | 608 "//testing/gmock", |
608 "//testing/gtest", | 609 "//testing/gtest", |
609 "//third_party/libwebm", | 610 "//third_party/libwebm", |
610 "//third_party/libyuv", | 611 "//third_party/libyuv", |
611 "//third_party/widevine/cdm:version_h", | 612 "//third_party/widevine/cdm:version_h", |
612 "//ui/gfx:test_support", | 613 "//ui/gfx:test_support", |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
903 fuzzer_test("media_webm_muxer_fuzzer") { | 904 fuzzer_test("media_webm_muxer_fuzzer") { |
904 sources = [ | 905 sources = [ |
905 "muxers/webm_muxer_fuzzertest.cc", | 906 "muxers/webm_muxer_fuzzertest.cc", |
906 ] | 907 ] |
907 deps = [ | 908 deps = [ |
908 ":media", | 909 ":media", |
909 "//base", | 910 "//base", |
910 "//third_party/libwebm", | 911 "//third_party/libwebm", |
911 ] | 912 ] |
912 } | 913 } |
OLD | NEW |