| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "audio_discard_helper.cc", | 51 "audio_discard_helper.cc", |
| 52 "audio_discard_helper.h", | 52 "audio_discard_helper.h", |
| 53 "audio_fifo.cc", | 53 "audio_fifo.cc", |
| 54 "audio_fifo.h", | 54 "audio_fifo.h", |
| 55 "audio_hash.cc", | 55 "audio_hash.cc", |
| 56 "audio_hash.h", | 56 "audio_hash.h", |
| 57 "audio_pull_fifo.cc", | 57 "audio_pull_fifo.cc", |
| 58 "audio_pull_fifo.h", | 58 "audio_pull_fifo.h", |
| 59 "audio_push_fifo.cc", | 59 "audio_push_fifo.cc", |
| 60 "audio_push_fifo.h", | 60 "audio_push_fifo.h", |
| 61 "audio_renderer.cc", | |
| 62 "audio_renderer.h", | 61 "audio_renderer.h", |
| 63 "audio_renderer_mixer.cc", | 62 "audio_renderer_mixer.cc", |
| 64 "audio_renderer_mixer.h", | 63 "audio_renderer_mixer.h", |
| 65 "audio_renderer_mixer_input.cc", | 64 "audio_renderer_mixer_input.cc", |
| 66 "audio_renderer_mixer_input.h", | 65 "audio_renderer_mixer_input.h", |
| 67 "audio_renderer_mixer_pool.h", | 66 "audio_renderer_mixer_pool.h", |
| 68 "audio_renderer_sink.h", | 67 "audio_renderer_sink.h", |
| 69 "audio_shifter.cc", | 68 "audio_shifter.cc", |
| 70 "audio_shifter.h", | 69 "audio_shifter.h", |
| 71 "audio_splicer.cc", | 70 "audio_splicer.cc", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "simd/convert_yuv_to_rgb.h", | 202 "simd/convert_yuv_to_rgb.h", |
| 204 "simd/convert_yuv_to_rgb_c.cc", | 203 "simd/convert_yuv_to_rgb_c.cc", |
| 205 "simd/filter_yuv.h", | 204 "simd/filter_yuv.h", |
| 206 "simd/filter_yuv_c.cc", | 205 "simd/filter_yuv_c.cc", |
| 207 "sinc_resampler.cc", | 206 "sinc_resampler.cc", |
| 208 "sinc_resampler.h", | 207 "sinc_resampler.h", |
| 209 "stream_parser.cc", | 208 "stream_parser.cc", |
| 210 "stream_parser.h", | 209 "stream_parser.h", |
| 211 "stream_parser_buffer.cc", | 210 "stream_parser_buffer.cc", |
| 212 "stream_parser_buffer.h", | 211 "stream_parser_buffer.h", |
| 212 "stream_position.cc", |
| 213 "stream_position.h", |
| 213 "subsample_entry.h", | 214 "subsample_entry.h", |
| 214 "surface_manager.h", | 215 "surface_manager.h", |
| 215 "text_cue.cc", | 216 "text_cue.cc", |
| 216 "text_cue.h", | 217 "text_cue.h", |
| 217 "text_ranges.cc", | 218 "text_ranges.cc", |
| 218 "text_ranges.h", | 219 "text_ranges.h", |
| 219 "text_renderer.cc", | 220 "text_renderer.cc", |
| 220 "text_renderer.h", | 221 "text_renderer.h", |
| 221 "text_track.h", | 222 "text_track.h", |
| 222 "text_track_config.cc", | 223 "text_track_config.cc", |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 | 582 |
| 582 fuzzer_test("media_container_names_fuzzer") { | 583 fuzzer_test("media_container_names_fuzzer") { |
| 583 sources = [ | 584 sources = [ |
| 584 "container_names_fuzzertest.cc", | 585 "container_names_fuzzertest.cc", |
| 585 ] | 586 ] |
| 586 deps = [ | 587 deps = [ |
| 587 "//base", | 588 "//base", |
| 588 "//media", | 589 "//media", |
| 589 ] | 590 ] |
| 590 } | 591 } |
| OLD | NEW |