-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwt.http.asd
108 lines (106 loc) · 4.32 KB
/
wt.http.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
;;;; -*- Mode: LISP -*-
(defsystem wt.http
:author "Xiangyu He"
:mailto "[email protected]"
:license "BSD 3-Clause"
:depends-on (:wt.uri
:wt.json
:wt.html
:wt.utility
:alexandria
:closer-mop
:babel
:babel-streams
:cl-change-case
:split-sequence
:cl-fad
:uuid
:trivial-backtrace
:trivial-gray-streams
:trivial-garbage
(:feature (:not :lispworks) :usocket)
(:feature (:not :lispworks) :cl+ssl)
:chunga
:cl-cont
:local-time)
:defsystem-depends-on (:wt.vendor)
:components ((:module "http"
:serial t
:components ((:file "package")
(:file "variable")
(:file "condition")
(:file "utility")
(:file "stream")
(:file "field")
(:file "header-field")
(:file "header-fields")
(:file "header")
(:file "mime")
(:file "cookie")
(:file "form")
(:file "multipart")
(:file "message")
(:file "request")
(:file "status")
(:file "version")
(:file "response")
(:file "file")
(:file "directory")
(:file "entity")
(:file "entity-text")
(:file "entity-html")
(:file "entity-json")
(:file "entity-file")
(:file "entity-directory")
(:file "entity-form")
(:file "reply")
(:file "redirect")
(:file "handler")
(:file "handler-error")
(:file "handler-application")
(:file "handler-default")
(:file "handler-anonymous")
(:file "router")
(:file "static")
(:file "websocket")
(:file "connection")
(:file "connection-manager")
(:file "listener")
(:file "server")
(:file "client"))))
:in-order-to ((test-op (test-op :wt.http/test)))
:perform (load-op :after (o c)
#+lispworks
(pushnew :http hcl:*packages-for-warn-on-redefinition*)))
(defsystem wt.http/test
:depends-on (:wt.http
:wt.test
:babel-streams)
:components ((:module "test/http"
:serial t
:components ((:file "package")
(:file "helper")
(:file "stream")
(:file "utility")
(:file "multipart")
(:file "status")
(:file "header-field")
(:file "header")
(:file "request")
(:file "response")
(:file "entity")
(:file "entity-text")
(:file "entity-html")
(:file "entity-form")
(:file "handler")
(:file "connection")
(:file "redirect")
(:file "error")
(:file "router")
(:file "file")
(:file "directory")
(:file "static")
(:file "form")
(:file "client"))))
:perform (test-op (o c)
(symbol-call :test :run! :http-test)))