| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "media.h", | 145 "media.h", |
| 146 "media_client.cc", | 146 "media_client.cc", |
| 147 "media_client.h", | 147 "media_client.h", |
| 148 "media_content_type.cc", | 148 "media_content_type.cc", |
| 149 "media_content_type.h", | 149 "media_content_type.h", |
| 150 "media_keys.cc", | 150 "media_keys.cc", |
| 151 "media_keys.h", | 151 "media_keys.h", |
| 152 "media_log.cc", | 152 "media_log.cc", |
| 153 "media_log.h", | 153 "media_log.h", |
| 154 "media_log_event.h", | 154 "media_log_event.h", |
| 155 "media_observer.cc", |
| 156 "media_observer.h", |
| 155 "media_permission.cc", | 157 "media_permission.cc", |
| 156 "media_permission.h", | 158 "media_permission.h", |
| 157 "media_resources.cc", | 159 "media_resources.cc", |
| 158 "media_resources.h", | 160 "media_resources.h", |
| 159 "media_switches.cc", | 161 "media_switches.cc", |
| 160 "media_switches.h", | 162 "media_switches.h", |
| 161 "media_track.cc", | 163 "media_track.cc", |
| 162 "media_track.h", | 164 "media_track.h", |
| 163 "media_tracks.cc", | 165 "media_tracks.cc", |
| 164 "media_tracks.h", | 166 "media_tracks.h", |
| 165 "media_url_demuxer.cc", | 167 "media_url_demuxer.cc", |
| 166 "media_url_demuxer.h", | 168 "media_url_demuxer.h", |
| 167 "media_util.cc", | 169 "media_util.cc", |
| 168 "media_util.h", | 170 "media_util.h", |
| 169 "mime_util.cc", | 171 "mime_util.cc", |
| 170 "mime_util.h", | 172 "mime_util.h", |
| 171 "mime_util_internal.cc", | 173 "mime_util_internal.cc", |
| 172 "mime_util_internal.h", | 174 "mime_util_internal.h", |
| 173 "moving_average.cc", | 175 "moving_average.cc", |
| 174 "moving_average.h", | 176 "moving_average.h", |
| 175 "multi_channel_resampler.cc", | 177 "multi_channel_resampler.cc", |
| 176 "multi_channel_resampler.h", | 178 "multi_channel_resampler.h", |
| 177 "null_video_sink.cc", | 179 "null_video_sink.cc", |
| 178 "null_video_sink.h", | 180 "null_video_sink.h", |
| 179 "output_device_info.cc", | 181 "output_device_info.cc", |
| 180 "output_device_info.h", | 182 "output_device_info.h", |
| 181 "pipeline.h", | 183 "pipeline.h", |
| 182 "pipeline_impl.cc", | 184 "pipeline_impl.cc", |
| 183 "pipeline_impl.h", | 185 "pipeline_impl.h", |
| 186 "pipeline_metadata.cc", |
| 184 "pipeline_metadata.h", | 187 "pipeline_metadata.h", |
| 185 "pipeline_status.h", | 188 "pipeline_status.h", |
| 186 "player_tracker.cc", | 189 "player_tracker.cc", |
| 187 "player_tracker.h", | 190 "player_tracker.h", |
| 188 "ranges.cc", | 191 "ranges.cc", |
| 189 "ranges.h", | 192 "ranges.h", |
| 190 "renderer.cc", | 193 "renderer.cc", |
| 191 "renderer.h", | 194 "renderer.h", |
| 192 "renderer_client.h", | 195 "renderer_client.h", |
| 193 "renderer_factory.cc", | 196 "renderer_factory.cc", |
| (...skipping 390 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 |