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

« back to all changes in this revision

Viewing changes to dom/indexedDB/ipc/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 file,
 
3
# You can obtain one at http://mozilla.org/MPL/2.0/.
 
4
 
 
5
DEPTH = @DEPTH@
 
6
topsrcdir = @top_srcdir@
 
7
srcdir = @srcdir@
 
8
relativesrcdir = @relativesrcdir@
 
9
VPATH = @srcdir@
 
10
FAIL_ON_WARNINGS := 1
 
11
 
 
12
include $(DEPTH)/config/autoconf.mk
 
13
 
 
14
MODULE = dom
 
15
LIBRARY_NAME = dom_indexeddb_ipc_s
 
16
LIBXUL_LIBRARY = 1
 
17
FORCE_STATIC_LIB = 1
 
18
 
 
19
EXPORTS_NAMESPACES = mozilla/dom/indexedDB
 
20
 
 
21
CPPSRCS += \
 
22
  IndexedDBChild.cpp \
 
23
  IndexedDBParent.cpp \
 
24
  $(NULL)
 
25
 
 
26
EXPORTS_mozilla/dom/indexedDB = SerializationHelpers.h
 
27
 
 
28
LOCAL_INCLUDES += \
 
29
  -I$(topsrcdir)/dom/indexedDB \
 
30
  -I$(topsrcdir)/content/events/src \
 
31
  $(NULL)
 
32
 
 
33
DEFINES += -D_IMPL_NS_LAYOUT
 
34
 
 
35
MOCHITEST_FILES = test_ipc.html
 
36
 
 
37
# Need to enable these tests sometime soon.
 
38
#XPCSHELL_TESTS = unit
 
39
 
 
40
# We're copying tests from another directory so this check is wrong for us.
 
41
#NO_XPCSHELL_MANIFEST_CHECK = 1
 
42
 
 
43
include $(topsrcdir)/config/config.mk
 
44
include $(topsrcdir)/ipc/chromium/chromium-config.mk
 
45
include $(topsrcdir)/config/rules.mk
 
46
 
 
47
# Copy all the normal xpcshell tests from the regular unit directory.
 
48
copy-xpcshell-tests:
 
49
        $(call install_cmd,$(wildcard $(topsrcdir)/dom/indexedDB/test/unit/test_*.js) \
 
50
                $(testxpcobjdir)/$(relativesrcdir)/$(XPCSHELL_TESTS))
 
51
 
 
52
libs-xpcshell-tests: copy-xpcshell-tests