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

Side by Side Diff: media/media.gyp

Issue 1083883003: Move BindToCurrentLoop from media/base/ to base/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix media/base/callback_holder.h compile Created 5 years, 8 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 | « media/filters/vpx_video_decoder.cc ('k') | media/mojo/services/mojo_renderer_impl.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'base/audio_renderer_mixer_input.h', 240 'base/audio_renderer_mixer_input.h',
241 'base/audio_renderer_sink.h', 241 'base/audio_renderer_sink.h',
242 'base/audio_shifter.cc', 242 'base/audio_shifter.cc',
243 'base/audio_shifter.h', 243 'base/audio_shifter.h',
244 'base/audio_splicer.cc', 244 'base/audio_splicer.cc',
245 'base/audio_splicer.h', 245 'base/audio_splicer.h',
246 'base/audio_timestamp_helper.cc', 246 'base/audio_timestamp_helper.cc',
247 'base/audio_timestamp_helper.h', 247 'base/audio_timestamp_helper.h',
248 'base/audio_video_metadata_extractor.cc', 248 'base/audio_video_metadata_extractor.cc',
249 'base/audio_video_metadata_extractor.h', 249 'base/audio_video_metadata_extractor.h',
250 'base/bind_to_current_loop.h',
251 'base/bit_reader.cc', 250 'base/bit_reader.cc',
252 'base/bit_reader.h', 251 'base/bit_reader.h',
253 'base/bit_reader_core.cc', 252 'base/bit_reader_core.cc',
254 'base/bit_reader_core.h', 253 'base/bit_reader_core.h',
255 'base/bitstream_buffer.h', 254 'base/bitstream_buffer.h',
256 'base/buffering_state.h', 255 'base/buffering_state.h',
257 'base/buffers.h', 256 'base/buffers.h',
258 'base/byte_queue.cc', 257 'base/byte_queue.cc',
259 'base/byte_queue.h', 258 'base/byte_queue.h',
260 'base/cdm_callback_promise.cc', 259 'base/cdm_callback_promise.cc',
(...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 'base/audio_fifo_unittest.cc', 1181 'base/audio_fifo_unittest.cc',
1183 'base/audio_hardware_config_unittest.cc', 1182 'base/audio_hardware_config_unittest.cc',
1184 'base/audio_hash_unittest.cc', 1183 'base/audio_hash_unittest.cc',
1185 'base/audio_pull_fifo_unittest.cc', 1184 'base/audio_pull_fifo_unittest.cc',
1186 'base/audio_renderer_mixer_input_unittest.cc', 1185 'base/audio_renderer_mixer_input_unittest.cc',
1187 'base/audio_renderer_mixer_unittest.cc', 1186 'base/audio_renderer_mixer_unittest.cc',
1188 'base/audio_shifter_unittest.cc', 1187 'base/audio_shifter_unittest.cc',
1189 'base/audio_splicer_unittest.cc', 1188 'base/audio_splicer_unittest.cc',
1190 'base/audio_timestamp_helper_unittest.cc', 1189 'base/audio_timestamp_helper_unittest.cc',
1191 'base/audio_video_metadata_extractor_unittest.cc', 1190 'base/audio_video_metadata_extractor_unittest.cc',
1192 'base/bind_to_current_loop_unittest.cc',
1193 'base/bit_reader_unittest.cc', 1191 'base/bit_reader_unittest.cc',
1194 'base/callback_holder.h', 1192 'base/callback_holder.h',
1195 'base/callback_holder_unittest.cc', 1193 'base/callback_holder_unittest.cc',
1196 'base/channel_mixer_unittest.cc', 1194 'base/channel_mixer_unittest.cc',
1197 'base/channel_mixing_matrix_unittest.cc', 1195 'base/channel_mixing_matrix_unittest.cc',
1198 'base/container_names_unittest.cc', 1196 'base/container_names_unittest.cc',
1199 'base/data_buffer_unittest.cc', 1197 'base/data_buffer_unittest.cc',
1200 'base/decoder_buffer_queue_unittest.cc', 1198 'base/decoder_buffer_queue_unittest.cc',
1201 'base/decoder_buffer_unittest.cc', 1199 'base/decoder_buffer_unittest.cc',
1202 'base/djb2_unittest.cc', 1200 'base/djb2_unittest.cc',
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
1948 '../build/isolate.gypi', 1946 '../build/isolate.gypi',
1949 ], 1947 ],
1950 'sources': [ 1948 'sources': [
1951 'media_unittests.isolate', 1949 'media_unittests.isolate',
1952 ], 1950 ],
1953 }, 1951 },
1954 ], 1952 ],
1955 }], 1953 }],
1956 ], 1954 ],
1957 } 1955 }
OLDNEW
« no previous file with comments | « media/filters/vpx_video_decoder.cc ('k') | media/mojo/services/mojo_renderer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698