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

Side by Side Diff: media/media.gyp

Issue 1636083003: H264 HW encode using VideoToolbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: miu@ comments. Created 4 years, 10 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 'base/loopback_audio_converter.h', 330 'base/loopback_audio_converter.h',
331 'base/mac/avfoundation_glue.h', 331 'base/mac/avfoundation_glue.h',
332 'base/mac/avfoundation_glue.mm', 332 'base/mac/avfoundation_glue.mm',
333 'base/mac/coremedia_glue.h', 333 'base/mac/coremedia_glue.h',
334 'base/mac/coremedia_glue.mm', 334 'base/mac/coremedia_glue.mm',
335 'base/mac/corevideo_glue.h', 335 'base/mac/corevideo_glue.h',
336 'base/mac/video_frame_mac.cc', 336 'base/mac/video_frame_mac.cc',
337 'base/mac/video_frame_mac.h', 337 'base/mac/video_frame_mac.h',
338 'base/mac/videotoolbox_glue.h', 338 'base/mac/videotoolbox_glue.h',
339 'base/mac/videotoolbox_glue.mm', 339 'base/mac/videotoolbox_glue.mm',
340 'base/mac/videotoolbox_helpers.cc',
miu 2016/02/04 22:23:20 These should only be built and linked on MacOS or
341 'base/mac/videotoolbox_helpers.h',
340 'base/media.cc', 342 'base/media.cc',
341 'base/media.h', 343 'base/media.h',
342 'base/media_client.cc', 344 'base/media_client.cc',
343 'base/media_client.h', 345 'base/media_client.h',
344 'base/media_file_checker.cc', 346 'base/media_file_checker.cc',
345 'base/media_file_checker.h', 347 'base/media_file_checker.h',
346 'base/media_keys.cc', 348 'base/media_keys.cc',
347 'base/media_keys.h', 349 'base/media_keys.h',
348 'base/media_log.cc', 350 'base/media_log.cc',
349 'base/media_log.h', 351 'base/media_log.h',
(...skipping 1707 matching lines...) Expand 10 before | Expand all | Expand 10 after
2057 '..', 2059 '..',
2058 ], 2060 ],
2059 'sources': [ 2061 'sources': [
2060 'base/mac/coremedia_glue.h', 2062 'base/mac/coremedia_glue.h',
2061 'base/mac/coremedia_glue.mm', 2063 'base/mac/coremedia_glue.mm',
2062 'base/mac/corevideo_glue.h', 2064 'base/mac/corevideo_glue.h',
2063 'base/mac/video_frame_mac.cc', 2065 'base/mac/video_frame_mac.cc',
2064 'base/mac/video_frame_mac.h', 2066 'base/mac/video_frame_mac.h',
2065 'base/mac/videotoolbox_glue.h', 2067 'base/mac/videotoolbox_glue.h',
2066 'base/mac/videotoolbox_glue.mm', 2068 'base/mac/videotoolbox_glue.mm',
2069 'base/mac/videotoolbox_helpers.cc',
2070 'base/mac/videotoolbox_helpers.h',
2067 'base/simd/convert_rgb_to_yuv.h', 2071 'base/simd/convert_rgb_to_yuv.h',
2068 'base/simd/convert_rgb_to_yuv_c.cc', 2072 'base/simd/convert_rgb_to_yuv_c.cc',
2069 'base/simd/convert_yuv_to_rgb.h', 2073 'base/simd/convert_yuv_to_rgb.h',
2070 'base/simd/convert_yuv_to_rgb_c.cc', 2074 'base/simd/convert_yuv_to_rgb_c.cc',
2071 'base/simd/filter_yuv.h', 2075 'base/simd/filter_yuv.h',
2072 'base/simd/filter_yuv_c.cc', 2076 'base/simd/filter_yuv_c.cc',
2073 'base/video_frame.cc', 2077 'base/video_frame.cc',
2074 'base/video_frame.h', 2078 'base/video_frame.h',
2075 'base/video_frame_metadata.cc', 2079 'base/video_frame_metadata.cc',
2076 'base/video_frame_metadata.h', 2080 'base/video_frame_metadata.h',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
2143 'dependencies': [ 2147 'dependencies': [
2144 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2148 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2145 ], 2149 ],
2146 }], 2150 }],
2147 ], 2151 ],
2148 }, 2152 },
2149 ], 2153 ],
2150 }], 2154 }],
2151 ], 2155 ],
2152 } 2156 }
OLDNEW
« media/base/mac/videotoolbox_helpers.h ('K') | « media/cast/sender/h264_vt_encoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698