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

Side by Side Diff: media/BUILD.gn

Issue 2481563002: Add AVDA unittests to media_unittests (Closed)
Patch Set: make gn check pass Created 4 years, 1 month 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
« no previous file with comments | « no previous file | media/gpu/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 } 708 }
709 } 709 }
710 710
711 # Contains tests for all targets in the "media" folder. 711 # Contains tests for all targets in the "media" folder.
712 # TODO(xhwang): Move mojo/capture/remoting tests here where applicable. 712 # TODO(xhwang): Move mojo/capture/remoting tests here where applicable.
713 test("media_unittests") { 713 test("media_unittests") {
714 deps = [ 714 deps = [
715 ":unit_tests", 715 ":unit_tests",
716 "//media/audio:unit_tests", 716 "//media/audio:unit_tests",
717 "//media/base:unit_tests", 717 "//media/base:unit_tests",
718 "//media/gpu:android_video_decode_accelerator_unittests",
watk 2016/11/04 23:12:31 Whether I put this here or inside "if (is_android)
xhwang 2016/11/04 23:14:20 yes, put it in is_android seems more logical.
718 "//media/mojo:unit_tests", 719 "//media/mojo:unit_tests",
719 "//media/test:pipeline_integration_tests", 720 "//media/test:pipeline_integration_tests",
720 "//media/test:run_all_unittests", 721 "//media/test:run_all_unittests",
721 ] 722 ]
722 723
723 if (is_android) { 724 if (is_android) {
724 deps += [ 725 deps += [
725 # The test needs the java dependencies to add the java classes for their 726 # The test needs the java dependencies to add the java classes for their
726 # native counterparts to the test apk. 727 # native counterparts to the test apk.
727 "//media/base/android:media_java", 728 "//media/base/android:media_java",
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 fuzzer_test("media_mp4_avcc_parser_fuzzer") { 929 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
929 sources = [ 930 sources = [
930 "formats/mp4/mp4_avcc_parser_fuzzer.cc", 931 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
931 ] 932 ]
932 deps = [ 933 deps = [
933 ":media", 934 ":media",
934 "//base", 935 "//base",
935 ] 936 ]
936 } 937 }
937 } 938 }
OLDNEW
« no previous file with comments | « no previous file | media/gpu/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698