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

« back to all changes in this revision

Viewing changes to dom/workers/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
FAIL_ON_WARNINGS := 1
 
10
 
 
11
include $(DEPTH)/config/autoconf.mk
 
12
 
 
13
MODULE           = dom
 
14
LIBRARY_NAME     = domworkers_s
 
15
LIBXUL_LIBRARY   = 1
 
16
FORCE_STATIC_LIB = 1
 
17
 
 
18
CPPSRCS = \
 
19
  ChromeWorkerScope.cpp \
 
20
  DOMBindingBase.cpp \
 
21
  Events.cpp \
 
22
  EventListenerManager.cpp \
 
23
  EventTarget.cpp \
 
24
  Exceptions.cpp \
 
25
  File.cpp \
 
26
  FileReaderSync.cpp \
 
27
  FileReaderSyncPrivate.cpp \
 
28
  ImageData.cpp \
 
29
  Location.cpp \
 
30
  Navigator.cpp \
 
31
  Principal.cpp \
 
32
  RuntimeService.cpp \
 
33
  ScriptLoader.cpp \
 
34
  Worker.cpp \
 
35
  WorkerPrivate.cpp \
 
36
  WorkerScope.cpp \
 
37
  XMLHttpRequestEventTarget.cpp \
 
38
  XMLHttpRequestUpload.cpp \
 
39
  XMLHttpRequest.cpp \
 
40
  $(NULL)
 
41
 
 
42
EXPORTS_NAMESPACES = \
 
43
  mozilla/dom/workers \
 
44
  mozilla/dom/workers/bindings \
 
45
  $(NULL)
 
46
 
 
47
# Public stuff.
 
48
EXPORTS_mozilla/dom/workers = Workers.h
 
49
 
 
50
# Stuff needed for the bindings, not really public though.
 
51
EXPORTS_mozilla/dom/workers/bindings = \
 
52
  DOMBindingBase.h \
 
53
  EventListenerManager.h \
 
54
  EventTarget.h \
 
55
  WorkerFeature.h \
 
56
  XMLHttpRequestEventTarget.h \
 
57
  XMLHttpRequestUpload.h \
 
58
  XMLHttpRequest.h \
 
59
  $(NULL)
 
60
 
 
61
LOCAL_INCLUDES = \
 
62
  -I$(topsrcdir)/content/base/src \
 
63
  -I$(topsrcdir)/content/events/src \
 
64
  -I$(topsrcdir)/dom/base \
 
65
  -I$(topsrcdir)/dom/system \
 
66
  -I$(topsrcdir)/xpcom/build \
 
67
  $(NULL)
 
68
 
 
69
TEST_DIRS += test
 
70
 
 
71
include $(topsrcdir)/config/rules.mk