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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 } | 71 } |
72 | 72 |
73 component("media") { | 73 component("media") { |
74 sources = [ | 74 sources = [ |
75 "cdm/aes_decryptor.cc", | 75 "cdm/aes_decryptor.cc", |
76 "cdm/aes_decryptor.h", | 76 "cdm/aes_decryptor.h", |
77 "cdm/cdm_adapter.cc", | 77 "cdm/cdm_adapter.cc", |
78 "cdm/cdm_adapter.h", | 78 "cdm/cdm_adapter.h", |
79 "cdm/cdm_allocator.cc", | 79 "cdm/cdm_allocator.cc", |
80 "cdm/cdm_allocator.h", | 80 "cdm/cdm_allocator.h", |
| 81 "cdm/cdm_file_io.cc", |
| 82 "cdm/cdm_file_io.h", |
81 "cdm/cdm_helpers.cc", | 83 "cdm/cdm_helpers.cc", |
82 "cdm/cdm_helpers.h", | 84 "cdm/cdm_helpers.h", |
83 "cdm/default_cdm_factory.cc", | 85 "cdm/default_cdm_factory.cc", |
84 "cdm/default_cdm_factory.h", | 86 "cdm/default_cdm_factory.h", |
85 "cdm/json_web_key.cc", | 87 "cdm/json_web_key.cc", |
86 "cdm/json_web_key.h", | 88 "cdm/json_web_key.h", |
87 "cdm/key_system_names.cc", | 89 "cdm/key_system_names.cc", |
88 "cdm/key_system_names.h", | 90 "cdm/key_system_names.h", |
89 "cdm/player_tracker_impl.cc", | 91 "cdm/player_tracker_impl.cc", |
90 "cdm/player_tracker_impl.h", | 92 "cdm/player_tracker_impl.h", |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
825 fuzzer_test("media_vp9_parser_fuzzer") { | 827 fuzzer_test("media_vp9_parser_fuzzer") { |
826 sources = [ | 828 sources = [ |
827 "filters/vp9_parser_fuzzertest.cc", | 829 "filters/vp9_parser_fuzzertest.cc", |
828 ] | 830 ] |
829 deps = [ | 831 deps = [ |
830 ":media", | 832 ":media", |
831 "//base", | 833 "//base", |
832 ] | 834 ] |
833 libfuzzer_options = [ "max_len = 400000" ] | 835 libfuzzer_options = [ "max_len = 400000" ] |
834 } | 836 } |
OLD | NEW |