~ubuntu-branches/ubuntu/quantal/gst-plugins-bad0.10/quantal-proposed

« back to all changes in this revision

Viewing changes to tools/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2011-07-19 14:32:43 UTC
  • mfrom: (18.4.21 sid)
  • Revision ID: james.westby@ubuntu.com-20110719143243-p7pnkh45akfp0ihk
Tags: 0.10.22-2ubuntu1
* Rebased on debian unstable, remaining changes:
  - debian/gstreamer-plugins-bad.install
    * don't include dtmf, liveadder, rtpmux, autoconvert and shm, we include 
      them in -good

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
        element-templates/audiofilter \
4
4
        element-templates/audiosink \
5
5
        element-templates/audiosrc \
6
 
        element-templates/base \
7
6
        element-templates/baseaudiosink \
8
7
        element-templates/baseaudiosrc \
9
8
        element-templates/basertpdepayload \
13
12
        element-templates/basetransform \
14
13
        element-templates/cddabasesrc \
15
14
        element-templates/element \
 
15
        element-templates/pushsrc \
 
16
        element-templates/tagdemux \
 
17
        element-templates/videofilter2 \
 
18
        element-templates/videosink
 
19
 
 
20
templatedeps = \
 
21
        element-templates/base \
16
22
        element-templates/gobject \
17
 
        element-templates/pushsrc \
18
23
        element-templates/sinkpad \
19
24
        element-templates/sinkpad-simple \
20
25
        element-templates/srcpad \
21
 
        element-templates/srcpad-simple \
22
 
        element-templates/tagdemux \
23
 
        element-templates/videosink
 
26
        element-templates/srcpad-simple
24
27
 
25
28
EXTRA_DIST = \
26
29
        gst-element-maker \
27
30
        gst-app-maker \
28
 
        $(templatefiles)
 
31
        $(templatefiles) \
 
32
        $(templatedeps) \
 
33
        gst-element-maker-test.sh
 
34
 
 
35
# Disabled since it doesn't work in an uninstalled setup:
 
36
#
 
37
#TESTS_ENVIRONMENT = \
 
38
#       SRC_DIR=$(abs_srcdir) \
 
39
#       TEMPLATE_FILES="$(templatefiles)" \
 
40
#       CPPFLAGS="-I$(abs_srcdir)"
 
41
#
 
42
#TESTS = gst-element-maker-test.sh
29
43