| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "moving_average.h", | 174 "moving_average.h", |
| 175 "multi_channel_resampler.cc", | 175 "multi_channel_resampler.cc", |
| 176 "multi_channel_resampler.h", | 176 "multi_channel_resampler.h", |
| 177 "null_video_sink.cc", | 177 "null_video_sink.cc", |
| 178 "null_video_sink.h", | 178 "null_video_sink.h", |
| 179 "output_device_info.cc", | 179 "output_device_info.cc", |
| 180 "output_device_info.h", | 180 "output_device_info.h", |
| 181 "pipeline.h", | 181 "pipeline.h", |
| 182 "pipeline_impl.cc", | 182 "pipeline_impl.cc", |
| 183 "pipeline_impl.h", | 183 "pipeline_impl.h", |
| 184 "pipeline_metadata.cc", |
| 184 "pipeline_metadata.h", | 185 "pipeline_metadata.h", |
| 185 "pipeline_status.h", | 186 "pipeline_status.h", |
| 186 "player_tracker.cc", | 187 "player_tracker.cc", |
| 187 "player_tracker.h", | 188 "player_tracker.h", |
| 188 "ranges.cc", | 189 "ranges.cc", |
| 189 "ranges.h", | 190 "ranges.h", |
| 190 "renderer.cc", | 191 "renderer.cc", |
| 191 "renderer.h", | 192 "renderer.h", |
| 192 "renderer_client.h", | 193 "renderer_client.h", |
| 194 "renderer_controller.cc", |
| 195 "renderer_controller.h", |
| 193 "renderer_factory.cc", | 196 "renderer_factory.cc", |
| 194 "renderer_factory.h", | 197 "renderer_factory.h", |
| 195 "sample_format.cc", | 198 "sample_format.cc", |
| 196 "sample_format.h", | 199 "sample_format.h", |
| 197 "seekable_buffer.cc", | 200 "seekable_buffer.cc", |
| 198 "seekable_buffer.h", | 201 "seekable_buffer.h", |
| 199 "serial_runner.cc", | 202 "serial_runner.cc", |
| 200 "serial_runner.h", | 203 "serial_runner.h", |
| 201 "silent_sink_suspender.cc", | 204 "silent_sink_suspender.cc", |
| 202 "silent_sink_suspender.h", | 205 "silent_sink_suspender.h", |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 | 587 |
| 585 fuzzer_test("media_container_names_fuzzer") { | 588 fuzzer_test("media_container_names_fuzzer") { |
| 586 sources = [ | 589 sources = [ |
| 587 "container_names_fuzzertest.cc", | 590 "container_names_fuzzertest.cc", |
| 588 ] | 591 ] |
| 589 deps = [ | 592 deps = [ |
| 590 "//base", | 593 "//base", |
| 591 "//media", | 594 "//media", |
| 592 ] | 595 ] |
| 593 } | 596 } |
| OLD | NEW |