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

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

Issue 1529643002: [Cronet] Use prebuilt Netty Http/2 server for Cronet BidirectionalStream testing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bidi_impl_helen8
Patch Set: Sync Created 4 years, 12 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
« no previous file with comments | « third_party/netty/README.chromium ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'targets': [
6 { # These targets require prebuilt binaries for netty and libnetty_tcnative.
7 # Ask mef@ for their location.
8 'target_name': 'netty_all',
9 'type' : 'none',
10 'variables': {
11 'jar_path': 'android/netty-all-4.1.0.CR1-20151123.120819-12.jar',
12 'exclude_from_apk': 1,
13 },
14 'includes': ['../../build/java_prebuilt.gypi'],
15 },
16 {
17 'target_name': 'netty_tcnative',
18 'type' : 'none',
19 'variables': {
20 'jar_path': 'android/libnetty_tcnative.jar',
21 'exclude_from_apk': 1,
22 },
23 'includes': ['../../build/java_prebuilt.gypi'],
24 'copies': [
25 {
26 'destination': '<(PRODUCT_DIR)',
27 'files': [
28 'android/libnetty-tcnative.so',
29 ],
30 },
31 ],
32 },
33 ],
34 }
OLDNEW
« no previous file with comments | « third_party/netty/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698