| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 "channel_mixing_matrix_unittest.cc", | 428 "channel_mixing_matrix_unittest.cc", |
| 429 "container_names_unittest.cc", | 429 "container_names_unittest.cc", |
| 430 "data_buffer_unittest.cc", | 430 "data_buffer_unittest.cc", |
| 431 "decoder_buffer_queue_unittest.cc", | 431 "decoder_buffer_queue_unittest.cc", |
| 432 "decoder_buffer_unittest.cc", | 432 "decoder_buffer_unittest.cc", |
| 433 "djb2_unittest.cc", | 433 "djb2_unittest.cc", |
| 434 "fake_demuxer_stream_unittest.cc", | 434 "fake_demuxer_stream_unittest.cc", |
| 435 "feedback_signal_accumulator_unittest.cc", | 435 "feedback_signal_accumulator_unittest.cc", |
| 436 "gmock_callback_support_unittest.cc", | 436 "gmock_callback_support_unittest.cc", |
| 437 "key_systems_unittest.cc", | 437 "key_systems_unittest.cc", |
| 438 "keyboard_event_counter_unittest.cc", |
| 438 "media_url_demuxer_unittest.cc", | 439 "media_url_demuxer_unittest.cc", |
| 439 "mime_util_unittest.cc", | 440 "mime_util_unittest.cc", |
| 440 "moving_average_unittest.cc", | 441 "moving_average_unittest.cc", |
| 441 "multi_channel_resampler_unittest.cc", | 442 "multi_channel_resampler_unittest.cc", |
| 442 "null_video_sink_unittest.cc", | 443 "null_video_sink_unittest.cc", |
| 443 "pipeline_impl_unittest.cc", | 444 "pipeline_impl_unittest.cc", |
| 444 "ranges_unittest.cc", | 445 "ranges_unittest.cc", |
| 445 "seekable_buffer_unittest.cc", | 446 "seekable_buffer_unittest.cc", |
| 446 "serial_runner_unittest.cc", | 447 "serial_runner_unittest.cc", |
| 447 "silent_sink_suspender_unittest.cc", | 448 "silent_sink_suspender_unittest.cc", |
| 448 "sinc_resampler_unittest.cc", | 449 "sinc_resampler_unittest.cc", |
| 449 "stream_parser_unittest.cc", | 450 "stream_parser_unittest.cc", |
| 450 "text_ranges_unittest.cc", | 451 "text_ranges_unittest.cc", |
| 451 "text_renderer_unittest.cc", | 452 "text_renderer_unittest.cc", |
| 452 "time_delta_interpolator_unittest.cc", | 453 "time_delta_interpolator_unittest.cc", |
| 453 "user_input_monitor_unittest.cc", | |
| 454 "vector_math_unittest.cc", | 454 "vector_math_unittest.cc", |
| 455 "video_codecs_unittest.cc", | 455 "video_codecs_unittest.cc", |
| 456 "video_decoder_config_unittest.cc", | 456 "video_decoder_config_unittest.cc", |
| 457 "video_frame_pool_unittest.cc", | 457 "video_frame_pool_unittest.cc", |
| 458 "video_frame_unittest.cc", | 458 "video_frame_unittest.cc", |
| 459 "video_util_unittest.cc", | 459 "video_util_unittest.cc", |
| 460 "wall_clock_time_source_unittest.cc", | 460 "wall_clock_time_source_unittest.cc", |
| 461 "yuv_convert_unittest.cc", | 461 "yuv_convert_unittest.cc", |
| 462 ] | 462 ] |
| 463 configs += [ | 463 configs += [ |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 617 | 617 |
| 618 fuzzer_test("media_container_names_fuzzer") { | 618 fuzzer_test("media_container_names_fuzzer") { |
| 619 sources = [ | 619 sources = [ |
| 620 "container_names_fuzzertest.cc", | 620 "container_names_fuzzertest.cc", |
| 621 ] | 621 ] |
| 622 deps = [ | 622 deps = [ |
| 623 "//base", | 623 "//base", |
| 624 "//media", | 624 "//media", |
| 625 ] | 625 ] |
| 626 } | 626 } |
| OLD | NEW |