Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: third_party/netty-tcnative/netty-tcnative.gyp

Issue 1537473002: [third-party] Netty fork of Tomcat Native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added real /external/netty4.git repo hash Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Builds the Netty fork of Tomcat Native. See http://netty.io/wiki/forked-tomcat -native.html
2 {
3 'targets': [
4 {
5 'target_name': 'netty-tcnative-so',
6 'product_name': 'netty-tcnative',
7 'type': 'shared_library',
8 'sources': [
9 'src/c/address.c',
10 'src/c/bb.c',
11 'src/c/dir.c',
12 'src/c/error.c',
13 'src/c/file.c',
14 'src/c/info.c',
15 'src/c/jnilib.c',
16 'src/c/lock.c',
17 'src/c/misc.c',
18 'src/c/mmap.c',
19 'src/c/multicast.c',
20 'src/c/network.c',
21 'src/c/os.c',
22 'src/c/os_unix_system.c',
23 'src/c/os_unix_uxpipe.c',
24 'src/c/poll.c',
25 'src/c/pool.c',
26 'src/c/proc.c',
27 'src/c/shm.c',
28 'src/c/ssl.c',
29 'src/c/sslcontext.c',
30 'src/c/sslinfo.c',
31 'src/c/sslnetwork.c',
32 'src/c/ssl_private.h',
33 'src/c/sslutils.c',
34 'src/c/stdlib.c',
35 'src/c/tcn_api.h',
36 'src/c/tcn.h',
37 'src/c/tcn_version.h',
38 'src/c/thread.c',
39 'src/c/user.c',
40 '../boringssl/src/decrepit/bio/base64_bio.c',
mef 2016/01/11 21:46:03 It is a bit weird that it builds files from anothe
kapishnikov 2016/01/12 15:50:26 Added a new target "boringssl-decrepit" in borings
41 '../boringssl/src/decrepit/rsa/rsa_decrepit.c',
42 ],
43 'include_dirs': [
44 '../apache-portable-runtime/src/include',
45 '../boringssl/src/include/openssl',
46 ],
47 'defines': [
48 'HAVE_OPENSSL',
49 ],
50 'dependencies': [
51 '../apache-portable-runtime/apr.gyp:apr',
52 '../boringssl/boringssl.gyp:boringssl',
53 ],
54 'variables': {
55 'component': 'static_library',
56 'use_native_jni_exports': 1,
57 }
58 },
59 {
60 'target_name': 'netty-tcnative',
61 'type': 'none',
62 'variables': {
63 'java_in_dir': 'src/java',
64 'javac_includes': [ '**/org/apache/tomcat/jni/*.java' ],
65 },
66 'includes': [ '../../build/java.gypi' ],
67 },
68 ],
69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698