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

Side by Side Diff: media/media.gyp

Issue 8394002: exclude the linux files that are not needed on openbsd (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 }, 10 },
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 'audio/linux/pulse_output.h', 314 'audio/linux/pulse_output.h',
315 ], 315 ],
316 }], 316 }],
317 ], 317 ],
318 }], 318 }],
319 ], 319 ],
320 }], 320 }],
321 ['OS=="openbsd"', { 321 ['OS=="openbsd"', {
322 'sources/': [ ['exclude', 'alsa_' ], 322 'sources/': [ ['exclude', 'alsa_' ],
323 ['exclude', 'audio_manager_linux' ], 323 ['exclude', 'audio_manager_linux' ],
324 ['exclude', 'pulse_' ],
Mark Mentovai 2011/10/25 15:03:04 Should this match with a leading slash or somethin
Robert Nagy 2011/10/25 15:16:37 Nope, this works fine.
Mark Mentovai 2011/10/25 16:06:10 Robert Nagy wrote:
324 ['exclude', '\\.mm?$' ] ], 325 ['exclude', '\\.mm?$' ] ],
Mark Mentovai 2011/10/25 16:06:10 I’m surprised this is necessary, because I thought
325 'link_settings': { 326 'link_settings': {
326 'libraries': [ 327 'libraries': [
327 ], 328 ],
328 }, 329 },
329 }], 330 }],
330 ['OS!="openbsd"', { 331 ['OS!="openbsd"', {
331 'sources!': [ 332 'sources!': [
332 'audio/openbsd/audio_manager_openbsd.cc', 333 'audio/openbsd/audio_manager_openbsd.cc',
333 'audio/openbsd/audio_manager_openbsd.h', 334 'audio/openbsd/audio_manager_openbsd.h',
334 ], 335 ],
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 884 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
884 ], 885 ],
885 'sources': [ 886 'sources': [
886 'tools/media_bench/media_bench.cc', 887 'tools/media_bench/media_bench.cc',
887 ], 888 ],
888 }, 889 },
889 ], 890 ],
890 }] 891 }]
891 ], 892 ],
892 } 893 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698