| 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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/mojo:unit_tests", |
| 718 "//media/test:pipeline_integration_tests", | 719 "//media/test:pipeline_integration_tests", |
| 719 "//media/test:run_all_unittests", | 720 "//media/test:run_all_unittests", |
| 720 ] | 721 ] |
| 721 | 722 |
| 722 if (is_android) { | 723 if (is_android) { |
| 723 deps += [ | 724 deps += [ |
| 724 # The test needs the java dependencies to add the java classes for their | 725 # The test needs the java dependencies to add the java classes for their |
| 725 # native counterparts to the test apk. | 726 # native counterparts to the test apk. |
| 726 "//media/base/android:media_java", | 727 "//media/base/android:media_java", |
| 727 "//ui/android:ui_java", | 728 "//ui/android:ui_java", |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 927 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 928 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 928 sources = [ | 929 sources = [ |
| 929 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 930 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 930 ] | 931 ] |
| 931 deps = [ | 932 deps = [ |
| 932 ":media", | 933 ":media", |
| 933 "//base", | 934 "//base", |
| 934 ] | 935 ] |
| 935 } | 936 } |
| 936 } | 937 } |
| OLD | NEW |