mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0caa8d383f
Bug 908503: Build config changes for libstagefright demuxer; r=glandium Bug 908503: Remove Chrome demuxer; r=cpearce Bug 908503: Add conversion to Annex B; r=cpearce
30 lines
409 B
Python
30 lines
409 B
Python
#!/usr/bin/python
|
|
|
|
import os
|
|
import sys
|
|
|
|
DEFINES={}
|
|
CONFIG={}
|
|
CXXFLAGS=[]
|
|
CONFIG['_MSC_VER'] = 0
|
|
CONFIG['OS_TARGET'] = 0
|
|
|
|
class Exports(object):
|
|
def __init__(self):
|
|
self.mp4_demuxer=[]
|
|
|
|
EXPORTS=Exports()
|
|
|
|
SOURCES=[]
|
|
UNIFIED_SOURCES=[]
|
|
LOCAL_INCLUDES=[]
|
|
|
|
try:
|
|
execfile('moz.build')
|
|
except:
|
|
sys.exit(1)
|
|
|
|
for f in SOURCES+UNIFIED_SOURCES:
|
|
if not f.startswith('binding/'):
|
|
print f
|