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

Side by Side Diff: media/media.gyp

Issue 24615005: Added AVFoundation Glue and Device Monitoring for Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 'midi/midi_port_info.cc', 388 'midi/midi_port_info.cc',
389 'midi/midi_port_info.h', 389 'midi/midi_port_info.h',
390 'mp3/mp3_stream_parser.cc', 390 'mp3/mp3_stream_parser.cc',
391 'mp3/mp3_stream_parser.h', 391 'mp3/mp3_stream_parser.h',
392 'video/capture/android/video_capture_device_android.cc', 392 'video/capture/android/video_capture_device_android.cc',
393 'video/capture/android/video_capture_device_android.h', 393 'video/capture/android/video_capture_device_android.h',
394 'video/capture/fake_video_capture_device.cc', 394 'video/capture/fake_video_capture_device.cc',
395 'video/capture/fake_video_capture_device.h', 395 'video/capture/fake_video_capture_device.h',
396 'video/capture/linux/video_capture_device_linux.cc', 396 'video/capture/linux/video_capture_device_linux.cc',
397 'video/capture/linux/video_capture_device_linux.h', 397 'video/capture/linux/video_capture_device_linux.h',
398 'video/capture/mac/avfoundation_glue.h',
399 'video/capture/mac/avfoundation_glue.mm',
398 'video/capture/mac/video_capture_device_mac.h', 400 'video/capture/mac/video_capture_device_mac.h',
399 'video/capture/mac/video_capture_device_mac.mm', 401 'video/capture/mac/video_capture_device_mac.mm',
400 'video/capture/mac/video_capture_device_qtkit_mac.h', 402 'video/capture/mac/video_capture_device_qtkit_mac.h',
401 'video/capture/mac/video_capture_device_qtkit_mac.mm', 403 'video/capture/mac/video_capture_device_qtkit_mac.mm',
402 'video/capture/video_capture.h', 404 'video/capture/video_capture.h',
403 'video/capture/video_capture_device.cc', 405 'video/capture/video_capture_device.cc',
404 'video/capture/video_capture_device.h', 406 'video/capture/video_capture_device.h',
405 'video/capture/video_capture_proxy.cc', 407 'video/capture/video_capture_proxy.cc',
406 'video/capture/video_capture_proxy.h', 408 'video/capture/video_capture_proxy.h',
407 'video/capture/video_capture_types.cc', 409 'video/capture/video_capture_types.cc',
(...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1464 'target_name': 'media_android_imageformat_list', 1466 'target_name': 'media_android_imageformat_list',
1465 'type': 'none', 1467 'type': 'none',
1466 'sources': [ 1468 'sources': [
1467 'base/android/java/src/org/chromium/media/ImageFormat.template', 1469 'base/android/java/src/org/chromium/media/ImageFormat.template',
1468 ], 1470 ],
1469 'variables': { 1471 'variables': {
1470 'package_name': 'org/chromium/media', 1472 'package_name': 'org/chromium/media',
1471 'template_deps': ['video/capture/android/imageformat_list.h'], 1473 'template_deps': ['video/capture/android/imageformat_list.h'],
1472 }, 1474 },
1473 'includes': [ '../build/android/java_cpp_template.gypi' ], 1475 'includes': [ '../build/android/java_cpp_template.gypi' ],
1474 }, 1476 },
1475 ], 1477 ],
1476 }], 1478 }],
1477 ['media_use_ffmpeg==1', { 1479 ['media_use_ffmpeg==1', {
1478 'targets': [ 1480 'targets': [
1479 { 1481 {
1480 'target_name': 'ffmpeg_unittests', 1482 'target_name': 'ffmpeg_unittests',
1481 'type': 'executable', 1483 'type': 'executable',
1482 'dependencies': [ 1484 'dependencies': [
1483 '../base/base.gyp:base', 1485 '../base/base.gyp:base',
1484 '../base/base.gyp:base_i18n', 1486 '../base/base.gyp:base_i18n',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1537 ], 1539 ],
1538 }], 1540 }],
1539 ], 1541 ],
1540 }], 1542 }],
1541 ], 1543 ],
1542 }, 1544 },
1543 ], 1545 ],
1544 }], 1546 }],
1545 ], 1547 ],
1546 } 1548 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698