diff options
Diffstat (limited to 'python/mozbuild/mozbuild/test/frontend/data/sources/moz.build')
-rw-r--r-- | python/mozbuild/mozbuild/test/frontend/data/sources/moz.build | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/python/mozbuild/mozbuild/test/frontend/data/sources/moz.build b/python/mozbuild/mozbuild/test/frontend/data/sources/moz.build new file mode 100644 index 000000000..f9b453238 --- /dev/null +++ b/python/mozbuild/mozbuild/test/frontend/data/sources/moz.build @@ -0,0 +1,37 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# Any copyright is dedicated to the Public Domain. +# http://creativecommons.org/publicdomain/zero/1.0/ + +@template +def Library(name): + '''Template for libraries.''' + LIBRARY_NAME = name + +Library('dummy') + +SOURCES += [ + 'a.cpp', + 'b.cc', + 'c.cxx', +] + +SOURCES += [ + 'd.c', +] + +SOURCES += [ + 'e.m', +] + +SOURCES += [ + 'f.mm', +] + +SOURCES += [ + 'g.S', +] + +SOURCES += [ + 'h.s', + 'i.asm', +] |