OLD | NEW |
(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 } |
OLD | NEW |