| 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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 fuzzer_test("media_webm_muxer_fuzzer") { | 904 fuzzer_test("media_webm_muxer_fuzzer") { |
| 905 sources = [ | 905 sources = [ |
| 906 "muxers/webm_muxer_fuzzertest.cc", | 906 "muxers/webm_muxer_fuzzertest.cc", |
| 907 ] | 907 ] |
| 908 deps = [ | 908 deps = [ |
| 909 ":media", | 909 ":media", |
| 910 "//base", | 910 "//base", |
| 911 "//third_party/libwebm", | 911 "//third_party/libwebm", |
| 912 ] | 912 ] |
| 913 } | 913 } |
| 914 |
| 915 if (proprietary_codecs) { |
| 916 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 917 sources = [ |
| 918 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 919 ] |
| 920 deps = [ |
| 921 ":media", |
| 922 "//base", |
| 923 ] |
| 924 } |
| 925 } |
| OLD | NEW |