| 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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 "//media/mojo:unit_tests", | 718 "//media/mojo:unit_tests", |
| 719 "//media/test:pipeline_integration_tests", | 719 "//media/test:pipeline_integration_tests", |
| 720 "//media/test:run_all_unittests", | 720 "//media/test:run_all_unittests", |
| 721 ] | 721 ] |
| 722 | 722 |
| 723 if (is_android) { | 723 if (is_android) { |
| 724 deps += [ | 724 deps += [ |
| 725 # 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 |
| 726 # native counterparts to the test apk. | 726 # native counterparts to the test apk. |
| 727 "//media/base/android:media_java", | 727 "//media/base/android:media_java", |
| 728 "//media/gpu:android_video_decode_accelerator_unittests", |
| 728 "//ui/android:ui_java", | 729 "//ui/android:ui_java", |
| 729 ] | 730 ] |
| 730 } | 731 } |
| 731 | 732 |
| 732 if (enable_media_remoting) { | 733 if (enable_media_remoting) { |
| 733 deps += [ "//media/remoting:media_remoting_tests" ] | 734 deps += [ "//media/remoting:media_remoting_tests" ] |
| 734 } | 735 } |
| 735 } | 736 } |
| 736 | 737 |
| 737 test("media_perftests") { | 738 test("media_perftests") { |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |