| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 "renderer.h", | 189 "renderer.h", |
| 190 "renderer_client.h", | 190 "renderer_client.h", |
| 191 "renderer_factory.cc", | 191 "renderer_factory.cc", |
| 192 "renderer_factory.h", | 192 "renderer_factory.h", |
| 193 "sample_format.cc", | 193 "sample_format.cc", |
| 194 "sample_format.h", | 194 "sample_format.h", |
| 195 "seekable_buffer.cc", | 195 "seekable_buffer.cc", |
| 196 "seekable_buffer.h", | 196 "seekable_buffer.h", |
| 197 "serial_runner.cc", | 197 "serial_runner.cc", |
| 198 "serial_runner.h", | 198 "serial_runner.h", |
| 199 "silent_sink_suspender.cc", |
| 200 "silent_sink_suspender.h", |
| 199 "simd/convert_rgb_to_yuv.h", | 201 "simd/convert_rgb_to_yuv.h", |
| 200 "simd/convert_rgb_to_yuv_c.cc", | 202 "simd/convert_rgb_to_yuv_c.cc", |
| 201 "simd/convert_yuv_to_rgb.h", | 203 "simd/convert_yuv_to_rgb.h", |
| 202 "simd/convert_yuv_to_rgb_c.cc", | 204 "simd/convert_yuv_to_rgb_c.cc", |
| 203 "simd/filter_yuv.h", | 205 "simd/filter_yuv.h", |
| 204 "simd/filter_yuv_c.cc", | 206 "simd/filter_yuv_c.cc", |
| 205 "sinc_resampler.cc", | 207 "sinc_resampler.cc", |
| 206 "sinc_resampler.h", | 208 "sinc_resampler.h", |
| 207 "stream_parser.cc", | 209 "stream_parser.cc", |
| 208 "stream_parser.h", | 210 "stream_parser.h", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 "media_url_demuxer_unittest.cc", | 422 "media_url_demuxer_unittest.cc", |
| 421 "mime_util_unittest.cc", | 423 "mime_util_unittest.cc", |
| 422 "moving_average_unittest.cc", | 424 "moving_average_unittest.cc", |
| 423 "multi_channel_resampler_unittest.cc", | 425 "multi_channel_resampler_unittest.cc", |
| 424 "null_video_sink_unittest.cc", | 426 "null_video_sink_unittest.cc", |
| 425 "pipeline_impl_unittest.cc", | 427 "pipeline_impl_unittest.cc", |
| 426 "ranges_unittest.cc", | 428 "ranges_unittest.cc", |
| 427 "run_all_unittests.cc", | 429 "run_all_unittests.cc", |
| 428 "seekable_buffer_unittest.cc", | 430 "seekable_buffer_unittest.cc", |
| 429 "serial_runner_unittest.cc", | 431 "serial_runner_unittest.cc", |
| 432 "silent_sink_suspender_unittest.cc", |
| 430 "sinc_resampler_unittest.cc", | 433 "sinc_resampler_unittest.cc", |
| 431 "stream_parser_unittest.cc", | 434 "stream_parser_unittest.cc", |
| 432 "text_ranges_unittest.cc", | 435 "text_ranges_unittest.cc", |
| 433 "text_renderer_unittest.cc", | 436 "text_renderer_unittest.cc", |
| 434 "time_delta_interpolator_unittest.cc", | 437 "time_delta_interpolator_unittest.cc", |
| 435 "user_input_monitor_unittest.cc", | 438 "user_input_monitor_unittest.cc", |
| 436 "vector_math_unittest.cc", | 439 "vector_math_unittest.cc", |
| 437 "video_codecs_unittest.cc", | 440 "video_codecs_unittest.cc", |
| 438 "video_decoder_config_unittest.cc", | 441 "video_decoder_config_unittest.cc", |
| 439 "video_frame_pool_unittest.cc", | 442 "video_frame_pool_unittest.cc", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 | 582 |
| 580 fuzzer_test("media_container_names_fuzzer") { | 583 fuzzer_test("media_container_names_fuzzer") { |
| 581 sources = [ | 584 sources = [ |
| 582 "container_names_fuzzertest.cc", | 585 "container_names_fuzzertest.cc", |
| 583 ] | 586 ] |
| 584 deps = [ | 587 deps = [ |
| 585 "//base", | 588 "//base", |
| 586 "//media", | 589 "//media", |
| 587 ] | 590 ] |
| 588 } | 591 } |
| OLD | NEW |