| 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 ldflags = [ | 739 ldflags = [ |
| 740 "/ignore:4217", | 740 "/ignore:4217", |
| 741 "/ignore:4049", | 741 "/ignore:4049", |
| 742 ] | 742 ] |
| 743 } | 743 } |
| 744 | 744 |
| 745 deps = [ | 745 deps = [ |
| 746 ":unit_tests", | 746 ":unit_tests", |
| 747 "//media/audio:unit_tests", | 747 "//media/audio:unit_tests", |
| 748 "//media/base:unit_tests", | 748 "//media/base:unit_tests", |
| 749 "//media/gpu:unit_tests", |
| 749 "//media/mojo:unit_tests", | 750 "//media/mojo:unit_tests", |
| 750 "//media/test:pipeline_integration_tests", | 751 "//media/test:pipeline_integration_tests", |
| 751 "//media/test:run_all_unittests", | 752 "//media/test:run_all_unittests", |
| 752 ] | 753 ] |
| 753 | 754 |
| 754 if (is_android) { | |
| 755 deps += [ | |
| 756 # The test needs the java dependencies to add the java classes for their | |
| 757 # native counterparts to the test apk. | |
| 758 "//media/base/android:media_java", | |
| 759 "//media/gpu:android_video_decode_accelerator_unittests", | |
| 760 "//ui/android:ui_java", | |
| 761 ] | |
| 762 } | |
| 763 | |
| 764 if (enable_media_remoting) { | 755 if (enable_media_remoting) { |
| 765 deps += [ "//media/remoting:media_remoting_tests" ] | 756 deps += [ "//media/remoting:media_remoting_tests" ] |
| 766 } | 757 } |
| 767 | 758 |
| 768 if (proprietary_codecs) { | 759 if (proprietary_codecs) { |
| 769 configs += [ "//third_party/opus:opus_config" ] | 760 configs += [ "//third_party/opus:opus_config" ] |
| 770 } | 761 } |
| 771 } | 762 } |
| 772 | 763 |
| 773 test("media_perftests") { | 764 test("media_perftests") { |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 979 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 970 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 980 sources = [ | 971 sources = [ |
| 981 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 972 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 982 ] | 973 ] |
| 983 deps = [ | 974 deps = [ |
| 984 ":media", | 975 ":media", |
| 985 "//base", | 976 "//base", |
| 986 ] | 977 ] |
| 987 } | 978 } |
| 988 } | 979 } |
| OLD | NEW |