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

Side by Side Diff: components/cronet.gypi

Issue 1537473002: [third-party] Netty fork of Tomcat Native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added cflag to include NDK support headers in APR build Created 4 years, 10 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="android"', { 7 ['OS=="android"', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'cronet_jni_headers', 10 'target_name': 'cronet_jni_headers',
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 ], 374 ],
375 ], 375 ],
376 'includes': [ 'cronet/cronet_static.gypi' ], 376 'includes': [ 'cronet/cronet_static.gypi' ],
377 }, 377 },
378 { 378 {
379 'target_name': 'cronet_test_apk', 379 'target_name': 'cronet_test_apk',
380 'type': 'none', 380 'type': 'none',
381 'dependencies': [ 381 'dependencies': [
382 'cronet_java', 382 'cronet_java',
383 '../net/net.gyp:net_java_test_support', 383 '../net/net.gyp:net_java_test_support',
384 '../third_party/netty-tcnative/netty-tcnative.gyp:netty-tcnative',
385 '../third_party/netty4/netty.gyp:netty_all',
384 ], 386 ],
385 'variables': { 387 'variables': {
386 'apk_name': 'CronetTest', 388 'apk_name': 'CronetTest',
387 'java_in_dir': 'cronet/android/test', 389 'java_in_dir': 'cronet/android/test',
388 'resource_dir': 'cronet/android/test/res', 390 'resource_dir': 'cronet/android/test/res',
389 'asset_location': 'cronet/android/test/assets', 391 'asset_location': 'cronet/android/test/assets',
390 'native_lib_target': 'libcronet_tests', 392 'native_lib_target': 'libcronet_tests',
391 'run_findbugs': 1, 393 'run_findbugs': 1,
394 'additional_bundled_libs': [
395 '>(netty_tcnative_so_file_location)',
396 ],
392 }, 397 },
393 'includes': [ '../build/java_apk.gypi' ], 398 'includes': [ '../build/java_apk.gypi' ],
394 }, 399 },
395 { 400 {
396 # cronet_test_apk creates a .jar as a side effect. Any java targets 401 # cronet_test_apk creates a .jar as a side effect. Any java targets
397 # that need that .jar in their classpath should depend on this target, 402 # that need that .jar in their classpath should depend on this target,
398 # cronet_test_apk_java. Dependents of cronet_test_apk receive its 403 # cronet_test_apk_java. Dependents of cronet_test_apk receive its
399 # jar path in the variable 'apk_output_jar_path'. This target should 404 # jar path in the variable 'apk_output_jar_path'. This target should
400 # only be used by targets which instrument cronet_test_apk. 405 # only be used by targets which instrument cronet_test_apk.
401 'target_name': 'cronet_test_apk_java', 406 'target_name': 'cronet_test_apk_java',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 }, 629 },
625 ], 630 ],
626 }, 631 },
627 ], 632 ],
628 'variables': { 633 'variables': {
629 'enable_data_reduction_proxy_support%': 0, 634 'enable_data_reduction_proxy_support%': 0,
630 }, 635 },
631 }], # OS=="android" 636 }], # OS=="android"
632 ], 637 ],
633 } 638 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698