| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "key_systems.cc", | 152 "key_systems.cc", |
| 153 "key_systems.h", | 153 "key_systems.h", |
| 154 "loopback_audio_converter.cc", | 154 "loopback_audio_converter.cc", |
| 155 "loopback_audio_converter.h", | 155 "loopback_audio_converter.h", |
| 156 "media.cc", | 156 "media.cc", |
| 157 "media.h", | 157 "media.h", |
| 158 "media_client.cc", | 158 "media_client.cc", |
| 159 "media_client.h", | 159 "media_client.h", |
| 160 "media_content_type.cc", | 160 "media_content_type.cc", |
| 161 "media_content_type.h", | 161 "media_content_type.h", |
| 162 "media_localization_resources.cc", |
| 163 "media_localization_resources.h", |
| 162 "media_log.cc", | 164 "media_log.cc", |
| 163 "media_log.h", | 165 "media_log.h", |
| 164 "media_log_event.h", | 166 "media_log_event.h", |
| 165 "media_observer.cc", | 167 "media_observer.cc", |
| 166 "media_observer.h", | 168 "media_observer.h", |
| 167 "media_permission.cc", | 169 "media_permission.cc", |
| 168 "media_permission.h", | 170 "media_permission.h", |
| 169 "media_resources.cc", | |
| 170 "media_resources.h", | |
| 171 "media_switches.cc", | 171 "media_switches.cc", |
| 172 "media_switches.h", | 172 "media_switches.h", |
| 173 "media_track.cc", | 173 "media_track.cc", |
| 174 "media_track.h", | 174 "media_track.h", |
| 175 "media_tracks.cc", | 175 "media_tracks.cc", |
| 176 "media_tracks.h", | 176 "media_tracks.h", |
| 177 "media_url_demuxer.cc", | 177 "media_url_demuxer.cc", |
| 178 "media_url_demuxer.h", | 178 "media_url_demuxer.h", |
| 179 "media_url_params.h", | 179 "media_url_params.h", |
| 180 "media_util.cc", | 180 "media_util.cc", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 | 357 |
| 358 static_library("test_support") { | 358 static_library("test_support") { |
| 359 testonly = true | 359 testonly = true |
| 360 sources = [ | 360 sources = [ |
| 361 "fake_audio_render_callback.cc", | 361 "fake_audio_render_callback.cc", |
| 362 "fake_audio_render_callback.h", | 362 "fake_audio_render_callback.h", |
| 363 "fake_audio_renderer_sink.cc", | 363 "fake_audio_renderer_sink.cc", |
| 364 "fake_audio_renderer_sink.h", | 364 "fake_audio_renderer_sink.h", |
| 365 "fake_demuxer_stream.cc", | 365 "fake_demuxer_stream.cc", |
| 366 "fake_demuxer_stream.h", | 366 "fake_demuxer_stream.h", |
| 367 "fake_media_resources.cc", | 367 "fake_media_localization_resources.cc", |
| 368 "fake_media_resources.h", | 368 "fake_media_localization_resources.h", |
| 369 "fake_single_thread_task_runner.cc", | 369 "fake_single_thread_task_runner.cc", |
| 370 "fake_single_thread_task_runner.h", | 370 "fake_single_thread_task_runner.h", |
| 371 "fake_text_track_stream.cc", | 371 "fake_text_track_stream.cc", |
| 372 "fake_text_track_stream.h", | 372 "fake_text_track_stream.h", |
| 373 "gmock_callback_support.h", | 373 "gmock_callback_support.h", |
| 374 "mock_audio_renderer_sink.cc", | 374 "mock_audio_renderer_sink.cc", |
| 375 "mock_audio_renderer_sink.h", | 375 "mock_audio_renderer_sink.h", |
| 376 "mock_demuxer_host.cc", | 376 "mock_demuxer_host.cc", |
| 377 "mock_demuxer_host.h", | 377 "mock_demuxer_host.h", |
| 378 "mock_filters.cc", | 378 "mock_filters.cc", |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 619 |
| 620 fuzzer_test("media_container_names_fuzzer") { | 620 fuzzer_test("media_container_names_fuzzer") { |
| 621 sources = [ | 621 sources = [ |
| 622 "container_names_fuzzertest.cc", | 622 "container_names_fuzzertest.cc", |
| 623 ] | 623 ] |
| 624 deps = [ | 624 deps = [ |
| 625 "//base", | 625 "//base", |
| 626 "//media", | 626 "//media", |
| 627 ] | 627 ] |
| 628 } | 628 } |
| OLD | NEW |