| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "mime_util.h", | 130 "mime_util.h", |
| 131 "mime_util_internal.cc", | 131 "mime_util_internal.cc", |
| 132 "mime_util_internal.h", | 132 "mime_util_internal.h", |
| 133 "moving_average.cc", | 133 "moving_average.cc", |
| 134 "moving_average.h", | 134 "moving_average.h", |
| 135 "multi_channel_resampler.cc", | 135 "multi_channel_resampler.cc", |
| 136 "multi_channel_resampler.h", | 136 "multi_channel_resampler.h", |
| 137 "null_video_sink.cc", | 137 "null_video_sink.cc", |
| 138 "null_video_sink.h", | 138 "null_video_sink.h", |
| 139 "output_device.h", | 139 "output_device.h", |
| 140 "pipeline.cc", | |
| 141 "pipeline.h", | 140 "pipeline.h", |
| 141 "pipeline_impl.cc", |
| 142 "pipeline_impl.h", |
| 142 "pipeline_status.h", | 143 "pipeline_status.h", |
| 143 "player_tracker.cc", | 144 "player_tracker.cc", |
| 144 "player_tracker.h", | 145 "player_tracker.h", |
| 145 "ranges.cc", | 146 "ranges.cc", |
| 146 "ranges.h", | 147 "ranges.h", |
| 147 "renderer.cc", | 148 "renderer.cc", |
| 148 "renderer.h", | 149 "renderer.h", |
| 149 "renderer_factory.cc", | 150 "renderer_factory.cc", |
| 150 "renderer_factory.h", | 151 "renderer_factory.h", |
| 151 "sample_format.cc", | 152 "sample_format.cc", |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 "decoder_buffer_queue_unittest.cc", | 398 "decoder_buffer_queue_unittest.cc", |
| 398 "decoder_buffer_unittest.cc", | 399 "decoder_buffer_unittest.cc", |
| 399 "djb2_unittest.cc", | 400 "djb2_unittest.cc", |
| 400 "fake_demuxer_stream_unittest.cc", | 401 "fake_demuxer_stream_unittest.cc", |
| 401 "gmock_callback_support_unittest.cc", | 402 "gmock_callback_support_unittest.cc", |
| 402 "key_systems_unittest.cc", | 403 "key_systems_unittest.cc", |
| 403 "mime_util_unittest.cc", | 404 "mime_util_unittest.cc", |
| 404 "moving_average_unittest.cc", | 405 "moving_average_unittest.cc", |
| 405 "multi_channel_resampler_unittest.cc", | 406 "multi_channel_resampler_unittest.cc", |
| 406 "null_video_sink_unittest.cc", | 407 "null_video_sink_unittest.cc", |
| 407 "pipeline_unittest.cc", | 408 "pipeline_impl_unittest.cc", |
| 408 "ranges_unittest.cc", | 409 "ranges_unittest.cc", |
| 409 "run_all_unittests.cc", | 410 "run_all_unittests.cc", |
| 410 "seekable_buffer_unittest.cc", | 411 "seekable_buffer_unittest.cc", |
| 411 "serial_runner_unittest.cc", | 412 "serial_runner_unittest.cc", |
| 412 "sinc_resampler_unittest.cc", | 413 "sinc_resampler_unittest.cc", |
| 413 "stream_parser_unittest.cc", | 414 "stream_parser_unittest.cc", |
| 414 "text_ranges_unittest.cc", | 415 "text_ranges_unittest.cc", |
| 415 "text_renderer_unittest.cc", | 416 "text_renderer_unittest.cc", |
| 416 "time_delta_interpolator_unittest.cc", | 417 "time_delta_interpolator_unittest.cc", |
| 417 "user_input_monitor_unittest.cc", | 418 "user_input_monitor_unittest.cc", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 } | 547 } |
| 547 | 548 |
| 548 fuzzer_test("media_container_names_fuzzer") { | 549 fuzzer_test("media_container_names_fuzzer") { |
| 549 sources = [ | 550 sources = [ |
| 550 "container_names_fuzzertest.cc", | 551 "container_names_fuzzertest.cc", |
| 551 ] | 552 ] |
| 552 deps = [ | 553 deps = [ |
| 553 "//media", | 554 "//media", |
| 554 ] | 555 ] |
| 555 } | 556 } |
| OLD | NEW |