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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 | 390 |
391 if (media_use_ffmpeg) { | 391 if (media_use_ffmpeg) { |
392 # Direct dependency required to inherit config. | 392 # Direct dependency required to inherit config. |
393 deps += [ "//third_party/ffmpeg" ] | 393 deps += [ "//third_party/ffmpeg" ] |
394 } | 394 } |
395 } | 395 } |
396 | 396 |
397 # Contains tests for all targets in the "media" folder. | 397 # Contains tests for all targets in the "media" folder. |
398 # TODO(xhwang): Move mojo/capture/remoting tests here where applicable. | 398 # TODO(xhwang): Move mojo/capture/remoting tests here where applicable. |
399 test("media_unittests") { | 399 test("media_unittests") { |
400 # crbug.com/676418: Suppress symbol import warnings. | |
401 if (is_win && is_component_build) { | |
402 ldflags = [ | |
403 "/ignore:4217", | |
404 "/ignore:4049", | |
405 ] | |
406 } | |
407 | |
408 deps = [ | 400 deps = [ |
409 ":unit_tests", | 401 ":unit_tests", |
410 "//media/audio:unit_tests", | 402 "//media/audio:unit_tests", |
411 "//media/base:unit_tests", | 403 "//media/base:unit_tests", |
412 "//media/gpu:unit_tests", | 404 "//media/gpu:unit_tests", |
413 "//media/mojo:unit_tests", | 405 "//media/mojo:unit_tests", |
414 "//media/test:pipeline_integration_tests", | 406 "//media/test:pipeline_integration_tests", |
415 "//media/test:run_all_unittests", | 407 "//media/test:run_all_unittests", |
416 ] | 408 ] |
417 | 409 |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 642 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
651 sources = [ | 643 sources = [ |
652 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 644 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
653 ] | 645 ] |
654 deps = [ | 646 deps = [ |
655 ":media", | 647 ":media", |
656 "//base", | 648 "//base", |
657 ] | 649 ] |
658 } | 650 } |
659 } | 651 } |
OLD | NEW |