| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "cdm/cdm_helpers.cc", | 178 "cdm/cdm_helpers.cc", |
| 179 "cdm/cdm_helpers.h", | 179 "cdm/cdm_helpers.h", |
| 180 "cdm/default_cdm_factory.cc", | 180 "cdm/default_cdm_factory.cc", |
| 181 "cdm/default_cdm_factory.h", | 181 "cdm/default_cdm_factory.h", |
| 182 "cdm/json_web_key.cc", | 182 "cdm/json_web_key.cc", |
| 183 "cdm/json_web_key.h", | 183 "cdm/json_web_key.h", |
| 184 "cdm/key_system_names.cc", | 184 "cdm/key_system_names.cc", |
| 185 "cdm/key_system_names.h", | 185 "cdm/key_system_names.h", |
| 186 "cdm/player_tracker_impl.cc", | 186 "cdm/player_tracker_impl.cc", |
| 187 "cdm/player_tracker_impl.h", | 187 "cdm/player_tracker_impl.h", |
| 188 "cdm/proxy_decryptor.cc", | |
| 189 "cdm/proxy_decryptor.h", | |
| 190 "cdm/supported_cdm_versions.cc", | 188 "cdm/supported_cdm_versions.cc", |
| 191 "cdm/supported_cdm_versions.h", | 189 "cdm/supported_cdm_versions.h", |
| 192 "ffmpeg/ffmpeg_deleters.h", | 190 "ffmpeg/ffmpeg_deleters.h", |
| 193 "filters/audio_clock.cc", | 191 "filters/audio_clock.cc", |
| 194 "filters/audio_clock.h", | 192 "filters/audio_clock.h", |
| 195 "filters/audio_renderer_algorithm.cc", | 193 "filters/audio_renderer_algorithm.cc", |
| 196 "filters/audio_renderer_algorithm.h", | 194 "filters/audio_renderer_algorithm.h", |
| 197 "filters/chunk_demuxer.cc", | 195 "filters/chunk_demuxer.cc", |
| 198 "filters/chunk_demuxer.h", | 196 "filters/chunk_demuxer.h", |
| 199 "filters/context_3d.h", | 197 "filters/context_3d.h", |
| (...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 if (proprietary_codecs) { | 938 if (proprietary_codecs) { |
| 941 fuzzer_test("media_cenc_utils_fuzzer") { | 939 fuzzer_test("media_cenc_utils_fuzzer") { |
| 942 sources = [ | 940 sources = [ |
| 943 "cdm/cenc_utils_fuzzertest.cc", | 941 "cdm/cenc_utils_fuzzertest.cc", |
| 944 ] | 942 ] |
| 945 deps = [ | 943 deps = [ |
| 946 ":media", | 944 ":media", |
| 947 ] | 945 ] |
| 948 } | 946 } |
| 949 } | 947 } |
| OLD | NEW |