blob: 4d6775fa4b9baa15792cfb77469a526b99c7ad32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/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
|