Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: media/BUILD.gn

Issue 2435423002: Add media remoting unittests to media_unittests. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 ] 720 ]
721 721
722 if (is_android) { 722 if (is_android) {
723 deps += [ 723 deps += [
724 # The test needs the java dependencies to add the java classes for their 724 # The test needs the java dependencies to add the java classes for their
725 # native counterparts to the test apk. 725 # native counterparts to the test apk.
726 "//media/base/android:media_java", 726 "//media/base/android:media_java",
727 "//ui/android:ui_java", 727 "//ui/android:ui_java",
728 ] 728 ]
729 } 729 }
730
731 if (enable_media_remoting) {
732 deps += [ "//media/remoting:media_remoting_unittests" ]
xhwang 2016/10/22 00:02:33 Does the tests work if enable_media_remoting is fa
xjz 2016/10/22 00:47:43 After discussing with miu@ offline, we decide to r
733 }
730 } 734 }
731 735
732 test("media_perftests") { 736 test("media_perftests") {
733 configs += [ ":media_config" ] 737 configs += [ ":media_config" ]
734 deps = [ 738 deps = [
735 ":media", 739 ":media",
736 ":shared_memory_support", 740 ":shared_memory_support",
737 ":test_support", 741 ":test_support",
738 "//base/test:test_support", 742 "//base/test:test_support",
739 "//media/audio:test_support", 743 "//media/audio:test_support",
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 fuzzer_test("media_mp4_avcc_parser_fuzzer") { 927 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
924 sources = [ 928 sources = [
925 "formats/mp4/mp4_avcc_parser_fuzzer.cc", 929 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
926 ] 930 ]
927 deps = [ 931 deps = [
928 ":media", 932 ":media",
929 "//base", 933 "//base",
930 ] 934 ]
931 } 935 }
932 } 936 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | media/remoting/BUILD.gn » ('j') | media/remoting/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698