~ubuntu-branches/ubuntu/precise/enigmail/precise-security

« back to all changes in this revision

Viewing changes to content/media/webrtc/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-12 16:36:01 UTC
  • mfrom: (0.12.15)
  • Revision ID: package-import@ubuntu.com-20121112163601-t8e8skdfi3ni9iqp
Tags: 2:1.4.6-0ubuntu0.12.04.1
* New upstream release v1.4.6
  - see LP: #1080212 for USN information
* Drop unneeded patches
  - remove debian/patches/correct-version-number.diff
  - remove debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Support building in an objdir
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This Source Code Form is subject to the terms of the Mozilla Public
 
2
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
3
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
4
 
 
5
DEPTH           = @DEPTH@
 
6
topsrcdir       = @top_srcdir@
 
7
srcdir          = @srcdir@
 
8
VPATH           = @srcdir@
 
9
 
 
10
include $(DEPTH)/config/autoconf.mk
 
11
 
 
12
MODULE = content
 
13
LIBRARY_NAME = gkconwebrtc_s
 
14
LIBXUL_LIBRARY = 1
 
15
 
 
16
EXPORTS += \
 
17
  MediaEngine.h \
 
18
  MediaEngineDefault.h \
 
19
  $(NULL)
 
20
 
 
21
CPPSRCS = \
 
22
  MediaEngineDefault.cpp \
 
23
  $(NULL)
 
24
 
 
25
ifdef MOZ_WEBRTC
 
26
EXPORTS += \
 
27
  MediaEngineWebRTC.h \
 
28
  $(NULL)
 
29
 
 
30
CPPSRCS += \
 
31
  MediaEngineWebRTC.cpp \
 
32
  MediaEngineWebRTCVideo.cpp \
 
33
  MediaEngineWebRTCAudio.cpp \
 
34
  $(NULL)
 
35
endif
 
36
 
 
37
FORCE_STATIC_LIB = 1
 
38
 
 
39
include $(topsrcdir)/config/rules.mk
 
40
 
 
41
ifdef MOZ_WEBRTC
 
42
LOCAL_INCLUDES += \
 
43
  -I$(topsrcdir)/media/webrtc/trunk/src \
 
44
  $(NULL)
 
45
endif