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

Unified 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 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/netty/README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/netty/netty.gyp
diff --git a/third_party/netty/netty.gyp b/third_party/netty/netty.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..09d6855f601f83594c8da7645e4edbe08ab63cbc
--- /dev/null
+++ b/third_party/netty/netty.gyp
@@ -0,0 +1,34 @@
+# Copyright (c) 2010 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ { # These targets require prebuilt binaries for netty and libnetty_tcnative.
+ # Ask mef@ for their location.
+ 'target_name': 'netty_all',
+ 'type' : 'none',
+ 'variables': {
+ 'jar_path': 'android/netty-all-4.1.0.CR1-20151123.120819-12.jar',
+ 'exclude_from_apk': 1,
+ },
+ 'includes': ['../../build/java_prebuilt.gypi'],
+ },
+ {
+ 'target_name': 'netty_tcnative',
+ 'type' : 'none',
+ 'variables': {
+ 'jar_path': 'android/libnetty_tcnative.jar',
+ 'exclude_from_apk': 1,
+ },
+ 'includes': ['../../build/java_prebuilt.gypi'],
+ 'copies': [
+ {
+ 'destination': '<(PRODUCT_DIR)',
+ 'files': [
+ 'android/libnetty-tcnative.so',
+ ],
+ },
+ ],
+ },
+ ],
+}
« 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