| 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/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 "base/vector_math.h", | 702 "base/vector_math.h", |
| 703 ] | 703 ] |
| 704 configs += [ ":media_config" ] | 704 configs += [ ":media_config" ] |
| 705 defines = [ "MEDIA_IMPLEMENTATION" ] | 705 defines = [ "MEDIA_IMPLEMENTATION" ] |
| 706 deps = [ | 706 deps = [ |
| 707 "//base", | 707 "//base", |
| 708 ] | 708 ] |
| 709 } | 709 } |
| 710 | 710 |
| 711 if (media_use_ffmpeg) { | 711 if (media_use_ffmpeg) { |
| 712 test("ffmpeg_unittests") { | |
| 713 sources = [ | |
| 714 "ffmpeg/ffmpeg_unittest.cc", | |
| 715 ] | |
| 716 | |
| 717 deps = [ | |
| 718 ":media", | |
| 719 ":test_support", | |
| 720 "//base", | |
| 721 "//base:i18n", | |
| 722 "//base/test:test_support", | |
| 723 "//testing/gtest", | |
| 724 "//third_party/ffmpeg", | |
| 725 "//ui/gfx:test_support", | |
| 726 ] | |
| 727 } | |
| 728 | |
| 729 test("ffmpeg_regression_tests") { | 712 test("ffmpeg_regression_tests") { |
| 730 sources = [ | 713 sources = [ |
| 731 "base/run_all_unittests.cc", | 714 "base/run_all_unittests.cc", |
| 732 "ffmpeg/ffmpeg_regression_tests.cc", | 715 "ffmpeg/ffmpeg_regression_tests.cc", |
| 733 "filters/pipeline_integration_test_base.cc", | 716 "filters/pipeline_integration_test_base.cc", |
| 734 ] | 717 ] |
| 735 configs += [ ":media_config" ] | 718 configs += [ ":media_config" ] |
| 736 deps = [ | 719 deps = [ |
| 737 ":media", | 720 ":media", |
| 738 ":test_support", | 721 ":test_support", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 deps = [ | 764 deps = [ |
| 782 ":media", | 765 ":media", |
| 783 ":shared_memory_support", | 766 ":shared_memory_support", |
| 784 "//base", | 767 "//base", |
| 785 "//ui/gl", | 768 "//ui/gl", |
| 786 "//ui/gfx", | 769 "//ui/gfx", |
| 787 "//ui/gfx/geometry", | 770 "//ui/gfx/geometry", |
| 788 ] | 771 ] |
| 789 } | 772 } |
| 790 } | 773 } |
| OLD | NEW |