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

Side by Side Diff: media/media.gyp

Issue 22801007: Adds the UserInputMonitor implementation for Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 'audio/pulse/pulse_util.h', 778 'audio/pulse/pulse_util.h',
779 ], 779 ],
780 }], 780 }],
781 ['os_posix==1', { 781 ['os_posix==1', {
782 'sources!': [ 782 'sources!': [
783 'video/capture/video_capture_device_dummy.cc', 783 'video/capture/video_capture_device_dummy.cc',
784 'video/capture/video_capture_device_dummy.h', 784 'video/capture/video_capture_device_dummy.h',
785 ], 785 ],
786 }], 786 }],
787 ['OS=="mac"', { 787 ['OS=="mac"', {
788 'sources': [
789 '../third_party/GTM/AppKit/GTMCarbonEvent.h',
790 '../third_party/GTM/AppKit/GTMCarbonEvent.m',
791 '../third_party/GTM/DebugUtils/GTMDebugSelectorValidation.h',
792 '../third_party/GTM/DebugUtils/GTMTypeCasting.h',
793 '../third_party/GTM/Foundation/GTMObjectSingleton.h',
794 '../third_party/GTM/GTMDefines.h',
795 ],
796 'include_dirs': [
797 '../third_party/GTM',
798 '../third_party/GTM/AppKit',
799 '../third_party/GTM/DebugUtils',
800 '../third_party/GTM/Foundation',
801 ],
788 'link_settings': { 802 'link_settings': {
789 'libraries': [ 803 'libraries': [
790 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', 804 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework',
791 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', 805 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework',
792 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', 806 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework',
793 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework', 807 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework',
794 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', 808 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework',
795 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 809 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
796 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', 810 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework',
797 ], 811 ],
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
1676 'sources': [ 1690 'sources': [
1677 'tools/media_bench/media_bench.cc', 1691 'tools/media_bench/media_bench.cc',
1678 ], 1692 ],
1679 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1693 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1680 'msvs_disabled_warnings': [ 4267, ], 1694 'msvs_disabled_warnings': [ 4267, ],
1681 }, 1695 },
1682 ], 1696 ],
1683 }], 1697 }],
1684 ], 1698 ],
1685 } 1699 }
OLDNEW
« media/base/user_input_monitor_mac.mm ('K') | « media/base/user_input_monitor_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698