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

Side by Side Diff: media/media.gyp

Issue 1211973012: [Experimental] MediaStreamRecorder playground (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed FFmpegMuxer, using instead libwebm::IMkvMuxer, which is partially added Created 5 years, 5 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/webm_muxer.cc ('k') | third_party/libwebm/libwebm.gyp » ('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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 # GN version: //media 51 # GN version: //media
52 'target_name': 'media', 52 'target_name': 'media',
53 'type': '<(component)', 53 'type': '<(component)',
54 'dependencies': [ 54 'dependencies': [
55 '../base/base.gyp:base', 55 '../base/base.gyp:base',
56 '../base/base.gyp:base_i18n', 56 '../base/base.gyp:base_i18n',
57 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 57 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
58 '../crypto/crypto.gyp:crypto', 58 '../crypto/crypto.gyp:crypto',
59 '../gpu/gpu.gyp:command_buffer_common', 59 '../gpu/gpu.gyp:command_buffer_common',
60 '../skia/skia.gyp:skia', 60 '../skia/skia.gyp:skia',
61 '../third_party/libwebm/libwebm.gyp:libwebm',
61 '../third_party/libyuv/libyuv.gyp:libyuv', 62 '../third_party/libyuv/libyuv.gyp:libyuv',
62 '../third_party/opus/opus.gyp:opus', 63 '../third_party/opus/opus.gyp:opus',
63 '../ui/events/events.gyp:events_base', 64 '../ui/events/events.gyp:events_base',
64 '../ui/gfx/gfx.gyp:gfx', 65 '../ui/gfx/gfx.gyp:gfx',
65 '../ui/gfx/gfx.gyp:gfx_geometry', 66 '../ui/gfx/gfx.gyp:gfx_geometry',
66 '../url/url.gyp:url_lib', 67 '../url/url.gyp:url_lib',
67 'shared_memory_support', 68 'shared_memory_support',
68 ], 69 ],
69 'defines': [ 70 'defines': [
70 'MEDIA_IMPLEMENTATION', 71 'MEDIA_IMPLEMENTATION',
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 'base/byte_queue.cc', 254 'base/byte_queue.cc',
254 'base/byte_queue.h', 255 'base/byte_queue.h',
255 'base/cdm_callback_promise.cc', 256 'base/cdm_callback_promise.cc',
256 'base/cdm_callback_promise.h', 257 'base/cdm_callback_promise.h',
257 'base/cdm_config.h', 258 'base/cdm_config.h',
258 'base/cdm_context.cc', 259 'base/cdm_context.cc',
259 'base/cdm_context.h', 260 'base/cdm_context.h',
260 'base/cdm_factory.cc', 261 'base/cdm_factory.cc',
261 'base/cdm_factory.h', 262 'base/cdm_factory.h',
262 'base/cdm_initialized_promise.cc', 263 'base/cdm_initialized_promise.cc',
263 'base/cdm_initialized_promise.h', 264 'base/cdm_initialized_promise.h',
264 'base/cdm_key_information.cc', 265 'base/cdm_key_information.cc',
265 'base/cdm_key_information.h', 266 'base/cdm_key_information.h',
266 'base/cdm_promise.cc', 267 'base/cdm_promise.cc',
267 'base/cdm_promise.h', 268 'base/cdm_promise.h',
268 'base/cdm_promise_adapter.cc', 269 'base/cdm_promise_adapter.cc',
269 'base/cdm_promise_adapter.h', 270 'base/cdm_promise_adapter.h',
270 'base/channel_mixer.cc', 271 'base/channel_mixer.cc',
271 'base/channel_mixer.h', 272 'base/channel_mixer.h',
272 'base/channel_mixing_matrix.cc', 273 'base/channel_mixing_matrix.cc',
273 'base/channel_mixing_matrix.h', 274 'base/channel_mixing_matrix.h',
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 'filters/video_cadence_estimator.cc', 496 'filters/video_cadence_estimator.cc',
496 'filters/video_cadence_estimator.h', 497 'filters/video_cadence_estimator.h',
497 'filters/video_renderer_algorithm.cc', 498 'filters/video_renderer_algorithm.cc',
498 'filters/video_renderer_algorithm.h', 499 'filters/video_renderer_algorithm.h',
499 'filters/vp8_bool_decoder.cc', 500 'filters/vp8_bool_decoder.cc',
500 'filters/vp8_bool_decoder.h', 501 'filters/vp8_bool_decoder.h',
501 'filters/vp8_parser.cc', 502 'filters/vp8_parser.cc',
502 'filters/vp8_parser.h', 503 'filters/vp8_parser.h',
503 'filters/vpx_video_decoder.cc', 504 'filters/vpx_video_decoder.cc',
504 'filters/vpx_video_decoder.h', 505 'filters/vpx_video_decoder.h',
506 'filters/webm_muxer.cc',
507 'filters/webm_muxer.h',
505 'filters/webvtt_util.h', 508 'filters/webvtt_util.h',
506 'filters/wsola_internals.cc', 509 'filters/wsola_internals.cc',
507 'filters/wsola_internals.h', 510 'filters/wsola_internals.h',
508 'formats/common/offset_byte_queue.cc', 511 'formats/common/offset_byte_queue.cc',
509 'formats/common/offset_byte_queue.h', 512 'formats/common/offset_byte_queue.h',
510 'formats/webm/webm_audio_client.cc', 513 'formats/webm/webm_audio_client.cc',
511 'formats/webm/webm_audio_client.h', 514 'formats/webm/webm_audio_client.h',
512 'formats/webm/webm_cluster_parser.cc', 515 'formats/webm/webm_cluster_parser.cc',
513 'formats/webm/webm_cluster_parser.h', 516 'formats/webm/webm_cluster_parser.h',
514 'formats/webm/webm_constants.cc', 517 'formats/webm/webm_constants.cc',
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after
1985 'dependencies': [ 1988 'dependencies': [
1986 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1989 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1987 ], 1990 ],
1988 }], 1991 }],
1989 ], 1992 ],
1990 }, 1993 },
1991 ], 1994 ],
1992 }], 1995 }],
1993 ], 1996 ],
1994 } 1997 }
OLDNEW
« no previous file with comments | « media/filters/webm_muxer.cc ('k') | third_party/libwebm/libwebm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698