summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/test/backend/data/test-support-binaries-tracked/test/moz.build
blob: a43f4083b3d00c582faf0f963f4f334c615e8d45 (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
30
31
32
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# Any copyright is dedicated to the Public Domain.
# http://creativecommons.org/publicdomain/zero/1.0/

FINAL_TARGET = "_tests/xpcshell/tests/mozbuildtest"


@template
def Library(name):
    """Template for libraries"""
    LIBRARY_NAME = name


@template
def SimplePrograms(names, ext=".cpp"):
    """Template for simple program executables.

    Those have a single source with the same base name as the executable.
    """
    SIMPLE_PROGRAMS += names
    SOURCES += ["%s%s" % (name, ext) for name in names]


@template
def HostLibrary(name):
    """Template for build tools libraries."""
    HOST_LIBRARY_NAME = name


Library("test-library")
HostLibrary("host-test-library")
SimplePrograms(["test-one", "test-two"])