| 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/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "cdm_key_information.cc", | 74 "cdm_key_information.cc", |
| 75 "cdm_key_information.h", | 75 "cdm_key_information.h", |
| 76 "cdm_promise.cc", | 76 "cdm_promise.cc", |
| 77 "cdm_promise.h", | 77 "cdm_promise.h", |
| 78 "cdm_promise_adapter.cc", | 78 "cdm_promise_adapter.cc", |
| 79 "cdm_promise_adapter.h", | 79 "cdm_promise_adapter.h", |
| 80 "channel_mixer.cc", | 80 "channel_mixer.cc", |
| 81 "channel_mixer.h", | 81 "channel_mixer.h", |
| 82 "channel_mixing_matrix.cc", | 82 "channel_mixing_matrix.cc", |
| 83 "channel_mixing_matrix.h", | 83 "channel_mixing_matrix.h", |
| 84 "container_names.cc", |
| 85 "container_names.h", |
| 84 "data_buffer.cc", | 86 "data_buffer.cc", |
| 85 "data_buffer.h", | 87 "data_buffer.h", |
| 86 "data_source.cc", | 88 "data_source.cc", |
| 87 "data_source.h", | 89 "data_source.h", |
| 88 "decoder_buffer.cc", | 90 "decoder_buffer.cc", |
| 89 "decoder_buffer.h", | 91 "decoder_buffer.h", |
| 90 "decoder_buffer_queue.cc", | 92 "decoder_buffer_queue.cc", |
| 91 "decoder_buffer_queue.h", | 93 "decoder_buffer_queue.h", |
| 92 "decoder_factory.cc", | 94 "decoder_factory.cc", |
| 93 "decoder_factory.h", | 95 "decoder_factory.h", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 libs = [] | 226 libs = [] |
| 225 configs += [ | 227 configs += [ |
| 226 # This target uses the ALLOCATOR_SHIM define. | 228 # This target uses the ALLOCATOR_SHIM define. |
| 227 "//base/allocator:allocator_shim_define", | 229 "//base/allocator:allocator_shim_define", |
| 228 "//build/config:precompiled_headers", | 230 "//build/config:precompiled_headers", |
| 229 "//media:media_config", | 231 "//media:media_config", |
| 230 "//media:media_implementation", | 232 "//media:media_implementation", |
| 231 ] | 233 ] |
| 232 | 234 |
| 233 if (media_use_ffmpeg) { | 235 if (media_use_ffmpeg) { |
| 234 sources += [ | |
| 235 "container_names.cc", | |
| 236 "container_names.h", | |
| 237 ] | |
| 238 if (!is_android) { | 236 if (!is_android) { |
| 239 sources += [ | 237 sources += [ |
| 240 "audio_video_metadata_extractor.cc", | 238 "audio_video_metadata_extractor.cc", |
| 241 "audio_video_metadata_extractor.h", | 239 "audio_video_metadata_extractor.h", |
| 242 "media_file_checker.cc", | 240 "media_file_checker.cc", |
| 243 "media_file_checker.h", | 241 "media_file_checker.h", |
| 244 ] | 242 ] |
| 245 } | 243 } |
| 246 | 244 |
| 247 deps += [ "//third_party/ffmpeg" ] | 245 deps += [ "//third_party/ffmpeg" ] |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 } | 547 } |
| 550 | 548 |
| 551 fuzzer_test("media_container_names_fuzzer") { | 549 fuzzer_test("media_container_names_fuzzer") { |
| 552 sources = [ | 550 sources = [ |
| 553 "container_names_fuzzertest.cc", | 551 "container_names_fuzzertest.cc", |
| 554 ] | 552 ] |
| 555 deps = [ | 553 deps = [ |
| 556 "//media", | 554 "//media", |
| 557 ] | 555 ] |
| 558 } | 556 } |
| OLD | NEW |