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

Side by Side Diff: media/media.gyp

Issue 23702008: Adds the UserInputMonitor implementation for Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 ], 628 ],
629 }], 629 }],
630 ['OS!="linux"', { 630 ['OS!="linux"', {
631 'sources!': [ 631 'sources!': [
632 'audio/cras/audio_manager_cras.cc', 632 'audio/cras/audio_manager_cras.cc',
633 'audio/cras/audio_manager_cras.h', 633 'audio/cras/audio_manager_cras.h',
634 'audio/cras/cras_input.cc', 634 'audio/cras/cras_input.cc',
635 'audio/cras/cras_input.h', 635 'audio/cras/cras_input.h',
636 'audio/cras/cras_unified.cc', 636 'audio/cras/cras_unified.cc',
637 'audio/cras/cras_unified.h', 637 'audio/cras/cras_unified.h',
638 'base/keyboard_event_counter.cc',
639 'base/keyboard_event_counter.h',
640 ], 638 ],
641 }], 639 }],
642 ['use_pulseaudio==1', { 640 ['use_pulseaudio==1', {
643 'cflags': [ 641 'cflags': [
644 '<!@(pkg-config --cflags libpulse)', 642 '<!@(pkg-config --cflags libpulse)',
645 ], 643 ],
646 'defines': [ 644 'defines': [
647 'USE_PULSEAUDIO', 645 'USE_PULSEAUDIO',
648 ], 646 ],
649 'conditions': [ 647 'conditions': [
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 ], 821 ],
824 'sources': [ 822 'sources': [
825 'base/simd/convert_yuv_to_rgb_x86.cc', 823 'base/simd/convert_yuv_to_rgb_x86.cc',
826 ], 824 ],
827 }], 825 }],
828 ['google_tv==1', { 826 ['google_tv==1', {
829 'defines': [ 827 'defines': [
830 'ENABLE_EAC3_PLAYBACK', 828 'ENABLE_EAC3_PLAYBACK',
831 ], 829 ],
832 }], 830 }],
831 ['OS!="linux" and OS!="win"', {
832 'sources!': [
833 'base/keyboard_event_counter.cc',
834 'base/keyboard_event_counter.h',
835 ],
836 }],
833 ], 837 ],
834 }, 838 },
835 { 839 {
836 'target_name': 'media_unittests', 840 'target_name': 'media_unittests',
837 'type': '<(gtest_target_type)', 841 'type': '<(gtest_target_type)',
838 'dependencies': [ 842 'dependencies': [
839 'media', 843 'media',
840 'media_test_support', 844 'media_test_support',
841 'shared_memory_support', 845 'shared_memory_support',
842 '../base/base.gyp:base', 846 '../base/base.gyp:base',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 'base/multi_channel_resampler_unittest.cc', 909 'base/multi_channel_resampler_unittest.cc',
906 'base/pipeline_unittest.cc', 910 'base/pipeline_unittest.cc',
907 'base/ranges_unittest.cc', 911 'base/ranges_unittest.cc',
908 'base/run_all_unittests.cc', 912 'base/run_all_unittests.cc',
909 'base/scoped_histogram_timer_unittest.cc', 913 'base/scoped_histogram_timer_unittest.cc',
910 'base/serial_runner_unittest.cc', 914 'base/serial_runner_unittest.cc',
911 'base/seekable_buffer_unittest.cc', 915 'base/seekable_buffer_unittest.cc',
912 'base/sinc_resampler_unittest.cc', 916 'base/sinc_resampler_unittest.cc',
913 'base/test_data_util.cc', 917 'base/test_data_util.cc',
914 'base/test_data_util.h', 918 'base/test_data_util.h',
919 'base/user_input_monitor_unittest.cc',
915 'base/vector_math_testing.h', 920 'base/vector_math_testing.h',
916 'base/vector_math_unittest.cc', 921 'base/vector_math_unittest.cc',
917 'base/video_frame_unittest.cc', 922 'base/video_frame_unittest.cc',
918 'base/video_util_unittest.cc', 923 'base/video_util_unittest.cc',
919 'base/yuv_convert_unittest.cc', 924 'base/yuv_convert_unittest.cc',
920 'cdm/aes_decryptor_unittest.cc', 925 'cdm/aes_decryptor_unittest.cc',
921 'ffmpeg/ffmpeg_common_unittest.cc', 926 'ffmpeg/ffmpeg_common_unittest.cc',
922 'filters/audio_decoder_selector_unittest.cc', 927 'filters/audio_decoder_selector_unittest.cc',
923 'filters/audio_file_reader_unittest.cc', 928 'filters/audio_file_reader_unittest.cc',
924 'filters/audio_renderer_algorithm_unittest.cc', 929 'filters/audio_renderer_algorithm_unittest.cc',
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
1509 ], 1514 ],
1510 }], 1515 }],
1511 ], 1516 ],
1512 }], 1517 }],
1513 ], 1518 ],
1514 }, 1519 },
1515 ], 1520 ],
1516 }], 1521 }],
1517 ], 1522 ],
1518 } 1523 }
OLDNEW
« media/base/user_input_monitor_win.cc ('K') | « media/base/user_input_monitor_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698