Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: media/base/BUILD.gn

Issue 1809093003: Moving SwitchOutputDevice out of OutputDevice interface, eliminating OutputDevice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing guidou's comments Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 "mime_util.cc", 146 "mime_util.cc",
147 "mime_util.h", 147 "mime_util.h",
148 "mime_util_internal.cc", 148 "mime_util_internal.cc",
149 "mime_util_internal.h", 149 "mime_util_internal.h",
150 "moving_average.cc", 150 "moving_average.cc",
151 "moving_average.h", 151 "moving_average.h",
152 "multi_channel_resampler.cc", 152 "multi_channel_resampler.cc",
153 "multi_channel_resampler.h", 153 "multi_channel_resampler.h",
154 "null_video_sink.cc", 154 "null_video_sink.cc",
155 "null_video_sink.h", 155 "null_video_sink.h",
156 "output_device.h", 156 "output_device_info.cc",
157 "output_device_info.h",
157 "pipeline.h", 158 "pipeline.h",
158 "pipeline_impl.cc", 159 "pipeline_impl.cc",
159 "pipeline_impl.h", 160 "pipeline_impl.h",
160 "pipeline_status.h", 161 "pipeline_status.h",
161 "player_tracker.cc", 162 "player_tracker.cc",
162 "player_tracker.h", 163 "player_tracker.h",
163 "ranges.cc", 164 "ranges.cc",
164 "ranges.h", 165 "ranges.h",
165 "renderer.cc", 166 "renderer.cc",
166 "renderer.h", 167 "renderer.h",
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 testonly = true 350 testonly = true
350 sources = [ 351 sources = [
351 "fake_audio_render_callback.cc", 352 "fake_audio_render_callback.cc",
352 "fake_audio_render_callback.h", 353 "fake_audio_render_callback.h",
353 "fake_audio_renderer_sink.cc", 354 "fake_audio_renderer_sink.cc",
354 "fake_audio_renderer_sink.h", 355 "fake_audio_renderer_sink.h",
355 "fake_demuxer_stream.cc", 356 "fake_demuxer_stream.cc",
356 "fake_demuxer_stream.h", 357 "fake_demuxer_stream.h",
357 "fake_media_resources.cc", 358 "fake_media_resources.cc",
358 "fake_media_resources.h", 359 "fake_media_resources.h",
359 "fake_output_device.cc",
360 "fake_output_device.h",
361 "fake_text_track_stream.cc", 360 "fake_text_track_stream.cc",
362 "fake_text_track_stream.h", 361 "fake_text_track_stream.h",
363 "gmock_callback_support.h", 362 "gmock_callback_support.h",
364 "mock_audio_renderer_sink.cc", 363 "mock_audio_renderer_sink.cc",
365 "mock_audio_renderer_sink.h", 364 "mock_audio_renderer_sink.h",
366 "mock_demuxer_host.cc", 365 "mock_demuxer_host.cc",
367 "mock_demuxer_host.h", 366 "mock_demuxer_host.h",
368 "mock_filters.cc", 367 "mock_filters.cc",
369 "mock_filters.h", 368 "mock_filters.h",
370 "mock_media_log.cc", 369 "mock_media_log.cc",
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 572
574 fuzzer_test("media_container_names_fuzzer") { 573 fuzzer_test("media_container_names_fuzzer") {
575 sources = [ 574 sources = [
576 "container_names_fuzzertest.cc", 575 "container_names_fuzzertest.cc",
577 ] 576 ]
578 deps = [ 577 deps = [
579 "//base", 578 "//base",
580 "//media", 579 "//media",
581 ] 580 ]
582 } 581 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698