OLD | NEW |
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'enable_hevc_demuxing%': 1, | 42 'enable_hevc_demuxing%': 1, |
43 'enable_mse_mpeg2ts_stream_parser%': 1, | 43 'enable_mse_mpeg2ts_stream_parser%': 1, |
44 }, { | 44 }, { |
45 'enable_ac3_eac3_audio_demuxing%': 0, | 45 'enable_ac3_eac3_audio_demuxing%': 0, |
46 'enable_hevc_demuxing%': 0, | 46 'enable_hevc_demuxing%': 0, |
47 'enable_mse_mpeg2ts_stream_parser%': 0, | 47 'enable_mse_mpeg2ts_stream_parser%': 0, |
48 }], | 48 }], |
49 ], | 49 ], |
50 }, | 50 }, |
51 'includes': [ | 51 'includes': [ |
52 'capture/capture.gypi', | 52 'capture.gypi', |
53 'media_cdm.gypi', | 53 'media_cdm.gypi', |
54 'media_variables.gypi', | 54 'media_variables.gypi', |
55 ], | 55 ], |
56 'targets': [ | 56 'targets': [ |
57 { | 57 { |
58 # GN version: //media:media_features | 58 # GN version: //media:media_features |
59 'target_name': 'media_features', | 59 'target_name': 'media_features', |
60 'includes': [ '../build/buildflag_header.gypi' ], | 60 'includes': [ '../build/buildflag_header.gypi' ], |
61 'hard_dependency': 1, | 61 'hard_dependency': 1, |
62 'variables': { | 62 'variables': { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 '../third_party/opus/opus.gyp:opus', | 97 '../third_party/opus/opus.gyp:opus', |
98 'media_features', | 98 'media_features', |
99 ], | 99 ], |
100 'defines': [ | 100 'defines': [ |
101 'MEDIA_IMPLEMENTATION', | 101 'MEDIA_IMPLEMENTATION', |
102 ], | 102 ], |
103 'include_dirs': [ | 103 'include_dirs': [ |
104 '..', | 104 '..', |
105 ], | 105 ], |
106 'includes': [ | 106 'includes': [ |
107 'capture/capture.gypi', | 107 'capture.gypi', |
108 ], | 108 ], |
109 'sources': [ | 109 'sources': [ |
110 '<@(capture_sources)', | 110 '<@(capture_sources)', |
111 'audio/agc_audio_stream.h', | 111 'audio/agc_audio_stream.h', |
112 'audio/alsa/alsa_input.cc', | 112 'audio/alsa/alsa_input.cc', |
113 'audio/alsa/alsa_input.h', | 113 'audio/alsa/alsa_input.h', |
114 'audio/alsa/alsa_output.cc', | 114 'audio/alsa/alsa_output.cc', |
115 'audio/alsa/alsa_output.h', | 115 'audio/alsa/alsa_output.h', |
116 'audio/alsa/alsa_util.cc', | 116 'audio/alsa/alsa_util.cc', |
117 'audio/alsa/alsa_util.h', | 117 'audio/alsa/alsa_util.h', |
(...skipping 2198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2316 'dependencies': [ | 2316 'dependencies': [ |
2317 '../build/linux/system.gyp:libdrm', | 2317 '../build/linux/system.gyp:libdrm', |
2318 ] | 2318 ] |
2319 }], | 2319 }], |
2320 ], | 2320 ], |
2321 } | 2321 } |
2322 ] | 2322 ] |
2323 }], | 2323 }], |
2324 ], | 2324 ], |
2325 } | 2325 } |
OLD | NEW |