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

Side by Side Diff: media/media.gyp

Issue 1716503002: Basic media tracks implementation for media stream parsers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added DISALLOW_COPY_AND_ASSIGN in MediaTracks 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 (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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 'base/media_keys.h', 347 'base/media_keys.h',
348 'base/media_log.cc', 348 'base/media_log.cc',
349 'base/media_log.h', 349 'base/media_log.h',
350 'base/media_log_event.h', 350 'base/media_log_event.h',
351 'base/media_permission.cc', 351 'base/media_permission.cc',
352 'base/media_permission.h', 352 'base/media_permission.h',
353 'base/media_resources.cc', 353 'base/media_resources.cc',
354 'base/media_resources.h', 354 'base/media_resources.h',
355 'base/media_switches.cc', 355 'base/media_switches.cc',
356 'base/media_switches.h', 356 'base/media_switches.h',
357 'base/media_track.cc',
358 'base/media_track.h',
359 'base/media_tracks.cc',
360 'base/media_tracks.h',
357 'base/media_util.cc', 361 'base/media_util.cc',
358 'base/media_util.h', 362 'base/media_util.h',
359 'base/mime_util.cc', 363 'base/mime_util.cc',
360 'base/mime_util.h', 364 'base/mime_util.h',
361 'base/mime_util_internal.cc', 365 'base/mime_util_internal.cc',
362 'base/mime_util_internal.h', 366 'base/mime_util_internal.h',
363 'base/moving_average.cc', 367 'base/moving_average.cc',
364 'base/moving_average.h', 368 'base/moving_average.h',
365 'base/multi_channel_resampler.cc', 369 'base/multi_channel_resampler.cc',
366 'base/multi_channel_resampler.h', 370 'base/multi_channel_resampler.h',
(...skipping 1814 matching lines...) Expand 10 before | Expand all | Expand 10 after
2181 'dependencies': [ 2185 'dependencies': [
2182 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2186 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2183 ], 2187 ],
2184 }], 2188 }],
2185 ], 2189 ],
2186 }, 2190 },
2187 ], 2191 ],
2188 }], 2192 }],
2189 ], 2193 ],
2190 } 2194 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698