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

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

Issue 1116473002: Introduce NullVideoSink for test classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments. Created 5 years, 7 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
« no previous file with comments | « no previous file | media/base/null_video_sink.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 "media_keys.h", 114 "media_keys.h",
115 "media_log.cc", 115 "media_log.cc",
116 "media_log.h", 116 "media_log.h",
117 "media_log_event.h", 117 "media_log_event.h",
118 "media_permission.cc", 118 "media_permission.cc",
119 "media_permission.h", 119 "media_permission.h",
120 "media_switches.cc", 120 "media_switches.cc",
121 "media_switches.h", 121 "media_switches.h",
122 "multi_channel_resampler.cc", 122 "multi_channel_resampler.cc",
123 "multi_channel_resampler.h", 123 "multi_channel_resampler.h",
124 "null_video_sink.cc",
125 "null_video_sink.h",
124 "pipeline.cc", 126 "pipeline.cc",
125 "pipeline.h", 127 "pipeline.h",
126 "pipeline_status.h", 128 "pipeline_status.h",
127 "player_tracker.cc", 129 "player_tracker.cc",
128 "player_tracker.h", 130 "player_tracker.h",
129 "ranges.cc", 131 "ranges.cc",
130 "ranges.h", 132 "ranges.h",
131 "renderer.cc", 133 "renderer.cc",
132 "renderer.h", 134 "renderer.h",
133 "renderer_factory.cc", 135 "renderer_factory.cc",
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 "callback_holder_unittest.cc", 369 "callback_holder_unittest.cc",
368 "channel_mixer_unittest.cc", 370 "channel_mixer_unittest.cc",
369 "channel_mixing_matrix_unittest.cc", 371 "channel_mixing_matrix_unittest.cc",
370 "data_buffer_unittest.cc", 372 "data_buffer_unittest.cc",
371 "decoder_buffer_queue_unittest.cc", 373 "decoder_buffer_queue_unittest.cc",
372 "decoder_buffer_unittest.cc", 374 "decoder_buffer_unittest.cc",
373 "djb2_unittest.cc", 375 "djb2_unittest.cc",
374 "gmock_callback_support_unittest.cc", 376 "gmock_callback_support_unittest.cc",
375 "key_systems_unittest.cc", 377 "key_systems_unittest.cc",
376 "multi_channel_resampler_unittest.cc", 378 "multi_channel_resampler_unittest.cc",
379 "null_video_sink_unittest.cc",
377 "pipeline_unittest.cc", 380 "pipeline_unittest.cc",
378 "ranges_unittest.cc", 381 "ranges_unittest.cc",
379 "run_all_unittests.cc", 382 "run_all_unittests.cc",
380 "seekable_buffer_unittest.cc", 383 "seekable_buffer_unittest.cc",
381 "serial_runner_unittest.cc", 384 "serial_runner_unittest.cc",
382 "sinc_resampler_unittest.cc", 385 "sinc_resampler_unittest.cc",
383 "stream_parser_unittest.cc", 386 "stream_parser_unittest.cc",
384 "text_ranges_unittest.cc", 387 "text_ranges_unittest.cc",
385 "text_renderer_unittest.cc", 388 "text_renderer_unittest.cc",
386 "user_input_monitor_unittest.cc", 389 "user_input_monitor_unittest.cc",
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 if (is_posix) { 522 if (is_posix) {
520 yasm_flags += [ "-DELF" ] 523 yasm_flags += [ "-DELF" ]
521 if (current_cpu == "x64") { 524 if (current_cpu == "x64") {
522 # TODO(ajwong): Why isn't this true in mac? 525 # TODO(ajwong): Why isn't this true in mac?
523 yasm_flags += [ "-DPIC" ] 526 yasm_flags += [ "-DPIC" ]
524 } 527 }
525 } 528 }
526 } 529 }
527 } 530 }
528 } 531 }
OLDNEW
« no previous file with comments | « no previous file | media/base/null_video_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698