| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "player_tracker.cc", | 203 "player_tracker.cc", |
| 204 "player_tracker.h", | 204 "player_tracker.h", |
| 205 "provision_fetcher.h", | 205 "provision_fetcher.h", |
| 206 "ranges.cc", | 206 "ranges.cc", |
| 207 "ranges.h", | 207 "ranges.h", |
| 208 "renderer.cc", | 208 "renderer.cc", |
| 209 "renderer.h", | 209 "renderer.h", |
| 210 "renderer_client.h", | 210 "renderer_client.h", |
| 211 "renderer_factory.cc", | 211 "renderer_factory.cc", |
| 212 "renderer_factory.h", | 212 "renderer_factory.h", |
| 213 "renderer_factory_selector.cc", |
| 214 "renderer_factory_selector.h", |
| 213 "sample_format.cc", | 215 "sample_format.cc", |
| 214 "sample_format.h", | 216 "sample_format.h", |
| 215 "seekable_buffer.cc", | 217 "seekable_buffer.cc", |
| 216 "seekable_buffer.h", | 218 "seekable_buffer.h", |
| 217 "serial_runner.cc", | 219 "serial_runner.cc", |
| 218 "serial_runner.h", | 220 "serial_runner.h", |
| 219 "silent_sink_suspender.cc", | 221 "silent_sink_suspender.cc", |
| 220 "silent_sink_suspender.h", | 222 "silent_sink_suspender.h", |
| 221 "sinc_resampler.cc", | 223 "sinc_resampler.cc", |
| 222 "sinc_resampler.h", | 224 "sinc_resampler.h", |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "feedback_signal_accumulator_unittest.cc", | 449 "feedback_signal_accumulator_unittest.cc", |
| 448 "gmock_callback_support_unittest.cc", | 450 "gmock_callback_support_unittest.cc", |
| 449 "key_systems_unittest.cc", | 451 "key_systems_unittest.cc", |
| 450 "media_url_demuxer_unittest.cc", | 452 "media_url_demuxer_unittest.cc", |
| 451 "mime_util_unittest.cc", | 453 "mime_util_unittest.cc", |
| 452 "moving_average_unittest.cc", | 454 "moving_average_unittest.cc", |
| 453 "multi_channel_resampler_unittest.cc", | 455 "multi_channel_resampler_unittest.cc", |
| 454 "null_video_sink_unittest.cc", | 456 "null_video_sink_unittest.cc", |
| 455 "pipeline_impl_unittest.cc", | 457 "pipeline_impl_unittest.cc", |
| 456 "ranges_unittest.cc", | 458 "ranges_unittest.cc", |
| 459 "renderer_factory_selector_unittest.cc", |
| 457 "seekable_buffer_unittest.cc", | 460 "seekable_buffer_unittest.cc", |
| 458 "serial_runner_unittest.cc", | 461 "serial_runner_unittest.cc", |
| 459 "silent_sink_suspender_unittest.cc", | 462 "silent_sink_suspender_unittest.cc", |
| 460 "sinc_resampler_unittest.cc", | 463 "sinc_resampler_unittest.cc", |
| 461 "stream_parser_unittest.cc", | 464 "stream_parser_unittest.cc", |
| 462 "text_ranges_unittest.cc", | 465 "text_ranges_unittest.cc", |
| 463 "text_renderer_unittest.cc", | 466 "text_renderer_unittest.cc", |
| 464 "time_delta_interpolator_unittest.cc", | 467 "time_delta_interpolator_unittest.cc", |
| 465 "vector_math_unittest.cc", | 468 "vector_math_unittest.cc", |
| 466 "video_codecs_unittest.cc", | 469 "video_codecs_unittest.cc", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 | 564 |
| 562 fuzzer_test("media_container_names_fuzzer") { | 565 fuzzer_test("media_container_names_fuzzer") { |
| 563 sources = [ | 566 sources = [ |
| 564 "container_names_fuzzertest.cc", | 567 "container_names_fuzzertest.cc", |
| 565 ] | 568 ] |
| 566 deps = [ | 569 deps = [ |
| 567 "//base", | 570 "//base", |
| 568 "//media", | 571 "//media", |
| 569 ] | 572 ] |
| 570 } | 573 } |
| OLD | NEW |