~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to testsuite/libcore.all/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
AM_CPPFLAGS = \
22
22
        -I$(top_srcdir)/testsuite  \
23
23
        -I$(top_srcdir)/backend  \
 
24
        -I$(top_srcdir)/libsound  \
 
25
        -I$(top_srcdir)/libmedia  \
24
26
        -I$(top_srcdir)/libamf  \
25
27
        -I$(top_srcdir)/libnet  \
26
28
        -I$(top_srcdir)/libbase  \
27
29
        -I$(top_srcdir)/libcore  \
 
30
        -I$(top_srcdir)/libcore/asobj \
 
31
        -I$(top_srcdir)/libcore/swf \
28
32
        -I$(top_srcdir)/libcore/parser  \
29
33
        -I$(top_srcdir)/libcore/vm  \
30
34
        $(FFMPEG_CFLAGS) \
38
42
        PointTest \
39
43
        EdgeTest \
40
44
        PropertyListTest \
41
 
        as_prop_flagsTest \
 
45
        PropFlagsTest \
42
46
        DisplayListTest \
43
47
        AsValueTest \
44
48
        ClassSizes \
45
49
        SafeStackTest \
46
50
        $(NULL)
47
51
 
 
52
if ENABLE_AVM2
 
53
check_PROGRAMS += \
 
54
        CodeStreamTest
 
55
endif
 
56
 
48
57
CLEANFILES = \
49
58
        testrun.sum \
50
59
        testrun.log \
54
63
        $(NULL)
55
64
 
56
65
GNASH_LIBS = \
57
 
        $(top_builddir)/libcore/libgnashcore.la \
58
66
        $(top_builddir)/libbase/libgnashbase.la \
59
67
        $(top_builddir)/libamf/libgnashamf.la \
 
68
        $(top_builddir)/libcore/libgnashcore.la \
60
69
        $(NULL)
61
70
 
62
71
if USE_FFMPEG_ENGINE
93
102
        $(GNASH_LIBS) \
94
103
        $(NULL)
95
104
 
96
 
as_prop_flagsTest_SOURCES = as_prop_flagsTest.cpp
97
 
as_prop_flagsTest_LDADD = \
 
105
PropFlagsTest_SOURCES = PropFlagsTest.cpp
 
106
PropFlagsTest_LDADD = \
98
107
        $(GNASH_LIBS) \
99
108
        $(NULL)
100
109
 
118
127
        $(GNASH_LIBS) \
119
128
        $(NULL)
120
129
 
 
130
CodeStreamTest_SOURCES = CodeStreamTest.cpp
 
131
CodeStreamTest_LDADD = \
 
132
        $(GNASH_LIBS) \
 
133
        $(NULL)
 
134
 
121
135
TEST_DRIVERS = ../simple.exp
122
136
TEST_CASES = \
123
137
        $(check_PROGRAMS) \