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

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

Issue 672793002: Expose the internal MatrixBuilder class as ChannelMixingMatrix. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: List expected_value first in ASSERT_FLOAT_EQ Created 6 years, 2 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/channel_mixer.cc » ('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/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "byte_queue.cc", 57 "byte_queue.cc",
58 "byte_queue.h", 58 "byte_queue.h",
59 "cdm_callback_promise.cc", 59 "cdm_callback_promise.cc",
60 "cdm_callback_promise.h", 60 "cdm_callback_promise.h",
61 "cdm_factory.cc", 61 "cdm_factory.cc",
62 "cdm_factory.h", 62 "cdm_factory.h",
63 "cdm_promise.cc", 63 "cdm_promise.cc",
64 "cdm_promise.h", 64 "cdm_promise.h",
65 "channel_mixer.cc", 65 "channel_mixer.cc",
66 "channel_mixer.h", 66 "channel_mixer.h",
67 "channel_mixing_matrix.cc",
68 "channel_mixing_matrix.h",
67 "clock.h", 69 "clock.h",
68 "data_buffer.cc", 70 "data_buffer.cc",
69 "data_buffer.h", 71 "data_buffer.h",
70 "data_source.cc", 72 "data_source.cc",
71 "data_source.h", 73 "data_source.h",
72 "decoder_buffer.cc", 74 "decoder_buffer.cc",
73 "decoder_buffer.h", 75 "decoder_buffer.h",
74 "decoder_buffer_queue.cc", 76 "decoder_buffer_queue.cc",
75 "decoder_buffer_queue.h", 77 "decoder_buffer_queue.h",
76 "decrypt_config.cc", 78 "decrypt_config.cc",
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "audio_pull_fifo_unittest.cc", 286 "audio_pull_fifo_unittest.cc",
285 "audio_renderer_mixer_input_unittest.cc", 287 "audio_renderer_mixer_input_unittest.cc",
286 "audio_renderer_mixer_unittest.cc", 288 "audio_renderer_mixer_unittest.cc",
287 "audio_splicer_unittest.cc", 289 "audio_splicer_unittest.cc",
288 "audio_timestamp_helper_unittest.cc", 290 "audio_timestamp_helper_unittest.cc",
289 "bind_to_current_loop_unittest.cc", 291 "bind_to_current_loop_unittest.cc",
290 "bit_reader_unittest.cc", 292 "bit_reader_unittest.cc",
291 "callback_holder.h", 293 "callback_holder.h",
292 "callback_holder_unittest.cc", 294 "callback_holder_unittest.cc",
293 "channel_mixer_unittest.cc", 295 "channel_mixer_unittest.cc",
296 "channel_mixing_matrix_unittest.cc",
294 "data_buffer_unittest.cc", 297 "data_buffer_unittest.cc",
295 "decoder_buffer_queue_unittest.cc", 298 "decoder_buffer_queue_unittest.cc",
296 "decoder_buffer_unittest.cc", 299 "decoder_buffer_unittest.cc",
297 "djb2_unittest.cc", 300 "djb2_unittest.cc",
298 "gmock_callback_support_unittest.cc", 301 "gmock_callback_support_unittest.cc",
299 "multi_channel_resampler_unittest.cc", 302 "multi_channel_resampler_unittest.cc",
300 "pipeline_unittest.cc", 303 "pipeline_unittest.cc",
301 "ranges_unittest.cc", 304 "ranges_unittest.cc",
302 "run_all_unittests.cc", 305 "run_all_unittests.cc",
303 "scoped_histogram_timer_unittest.cc", 306 "scoped_histogram_timer_unittest.cc",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 if (is_posix) { 441 if (is_posix) {
439 yasm_flags += [ "-DELF" ] 442 yasm_flags += [ "-DELF" ]
440 if (cpu_arch == "x64") { 443 if (cpu_arch == "x64") {
441 # TODO(ajwong): Why isn't this true in mac? 444 # TODO(ajwong): Why isn't this true in mac?
442 yasm_flags += [ "-DPIC" ] 445 yasm_flags += [ "-DPIC" ]
443 } 446 }
444 } 447 }
445 } 448 }
446 } 449 }
447 } 450 }
OLDNEW
« no previous file with comments | « no previous file | media/base/channel_mixer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698