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

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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 ], 679 ],
680 }], 680 }],
681 ['OS!="linux"', { 681 ['OS!="linux"', {
682 'sources!': [ 682 'sources!': [
683 'audio/cras/audio_manager_cras.cc', 683 'audio/cras/audio_manager_cras.cc',
684 'audio/cras/audio_manager_cras.h', 684 'audio/cras/audio_manager_cras.h',
685 'audio/cras/cras_input.cc', 685 'audio/cras/cras_input.cc',
686 'audio/cras/cras_input.h', 686 'audio/cras/cras_input.h',
687 'audio/cras/cras_unified.cc', 687 'audio/cras/cras_unified.cc',
688 'audio/cras/cras_unified.h', 688 'audio/cras/cras_unified.h',
689 'base/keyboard_event_counter.cc',
690 'base/keyboard_event_counter.h',
691 ], 689 ],
692 }], 690 }],
693 ['use_pulseaudio==1', { 691 ['use_pulseaudio==1', {
694 'cflags': [ 692 'cflags': [
695 '<!@(pkg-config --cflags libpulse)', 693 '<!@(pkg-config --cflags libpulse)',
696 ], 694 ],
697 'defines': [ 695 'defines': [
698 'USE_PULSEAUDIO', 696 'USE_PULSEAUDIO',
699 ], 697 ],
700 'conditions': [ 698 'conditions': [
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 ], 873 ],
876 'sources': [ 874 'sources': [
877 'base/simd/convert_yuv_to_rgb_x86.cc', 875 'base/simd/convert_yuv_to_rgb_x86.cc',
878 ], 876 ],
879 }], 877 }],
880 ['google_tv==1', { 878 ['google_tv==1', {
881 'defines': [ 879 'defines': [
882 'ENABLE_EAC3_PLAYBACK', 880 'ENABLE_EAC3_PLAYBACK',
883 ], 881 ],
884 }], 882 }],
883 ['OS!="linux" and OS!="win"', {
884 'sources!': [
Sergey Ulanov 2013/09/04 18:40:09 indentation
jiayl 2013/09/05 00:29:38 Done.
885 'base/keyboard_event_counter.cc',
886 'base/keyboard_event_counter.h',
887 ],
888 }],
885 ], 889 ],
886 'target_conditions': [ 890 'target_conditions': [
887 ['OS=="ios"', { 891 ['OS=="ios"', {
888 'sources/': [ 892 'sources/': [
889 # Pull in specific Mac files for iOS (which have been filtered out 893 # Pull in specific Mac files for iOS (which have been filtered out
890 # by file name rules). 894 # by file name rules).
891 ['include', '^audio/mac/audio_input_mac\\.'], 895 ['include', '^audio/mac/audio_input_mac\\.'],
892 ], 896 ],
893 }], 897 }],
894 ], 898 ],
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 'base/multi_channel_resampler_unittest.cc', 967 'base/multi_channel_resampler_unittest.cc',
964 'base/pipeline_unittest.cc', 968 'base/pipeline_unittest.cc',
965 'base/ranges_unittest.cc', 969 'base/ranges_unittest.cc',
966 'base/run_all_unittests.cc', 970 'base/run_all_unittests.cc',
967 'base/scoped_histogram_timer_unittest.cc', 971 'base/scoped_histogram_timer_unittest.cc',
968 'base/serial_runner_unittest.cc', 972 'base/serial_runner_unittest.cc',
969 'base/seekable_buffer_unittest.cc', 973 'base/seekable_buffer_unittest.cc',
970 'base/sinc_resampler_unittest.cc', 974 'base/sinc_resampler_unittest.cc',
971 'base/test_data_util.cc', 975 'base/test_data_util.cc',
972 'base/test_data_util.h', 976 'base/test_data_util.h',
977 'base/user_input_monitor_unittest.cc',
973 'base/vector_math_testing.h', 978 'base/vector_math_testing.h',
974 'base/vector_math_unittest.cc', 979 'base/vector_math_unittest.cc',
975 'base/video_frame_unittest.cc', 980 'base/video_frame_unittest.cc',
976 'base/video_util_unittest.cc', 981 'base/video_util_unittest.cc',
977 'base/yuv_convert_unittest.cc', 982 'base/yuv_convert_unittest.cc',
978 'cdm/aes_decryptor_unittest.cc', 983 'cdm/aes_decryptor_unittest.cc',
979 'ffmpeg/ffmpeg_common_unittest.cc', 984 'ffmpeg/ffmpeg_common_unittest.cc',
980 'filters/audio_decoder_selector_unittest.cc', 985 'filters/audio_decoder_selector_unittest.cc',
981 'filters/audio_file_reader_unittest.cc', 986 'filters/audio_file_reader_unittest.cc',
982 'filters/audio_renderer_algorithm_unittest.cc', 987 'filters/audio_renderer_algorithm_unittest.cc',
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 ], 1586 ],
1582 }], 1587 }],
1583 ], 1588 ],
1584 }], 1589 }],
1585 ], 1590 ],
1586 }, 1591 },
1587 ], 1592 ],
1588 }], 1593 }],
1589 ], 1594 ],
1590 } 1595 }
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