| OLD | NEW |
| 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 # TODO(mef): Figure out what needs to be done for gn script. | 8 # TODO(mef): Figure out what needs to be done for gn script. |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 }, | 309 }, |
| 310 'includes': [ '../build/jni_generator.gypi' ], | 310 'includes': [ '../build/jni_generator.gypi' ], |
| 311 }, | 311 }, |
| 312 { | 312 { |
| 313 'target_name': 'libcronet_tests', | 313 'target_name': 'libcronet_tests', |
| 314 'type': 'shared_library', | 314 'type': 'shared_library', |
| 315 'sources': [ | 315 'sources': [ |
| 316 'cronet/android/test/cronet_test_jni.cc', | 316 'cronet/android/test/cronet_test_jni.cc', |
| 317 'cronet/android/test/mock_url_request_job_factory.cc', | 317 'cronet/android/test/mock_url_request_job_factory.cc', |
| 318 'cronet/android/test/mock_url_request_job_factory.h', | 318 'cronet/android/test/mock_url_request_job_factory.h', |
| 319 'cronet/android/test/upload_test_server.cc', | 319 'cronet/android/test/native_test_server.cc', |
| 320 'cronet/android/test/upload_test_server.h', | 320 'cronet/android/test/native_test_server.h', |
| 321 'cronet/android/test/network_change_notifier_util.cc', | 321 'cronet/android/test/network_change_notifier_util.cc', |
| 322 'cronet/android/test/network_change_notifier_util.h', | 322 'cronet/android/test/network_change_notifier_util.h', |
| 323 ], | 323 ], |
| 324 'dependencies': [ | 324 'dependencies': [ |
| 325 'cronet_static', | 325 'cronet_static', |
| 326 'cronet_tests_jni_headers', | 326 'cronet_tests_jni_headers', |
| 327 '../base/base.gyp:base', | 327 '../base/base.gyp:base', |
| 328 '../net/net.gyp:net', | 328 '../net/net.gyp:net', |
| 329 '../net/net.gyp:net_test_support', | 329 '../net/net.gyp:net_test_support', |
| 330 '../net/net.gyp:quic_tools', | 330 '../net/net.gyp:quic_tools', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 'files': [ | 517 'files': [ |
| 518 '<(SHARED_LIB_DIR)/<(native_lib)', | 518 '<(SHARED_LIB_DIR)/<(native_lib)', |
| 519 ], | 519 ], |
| 520 }, | 520 }, |
| 521 ], | 521 ], |
| 522 }, | 522 }, |
| 523 ], | 523 ], |
| 524 }], # OS=="android" and use_icu_alternatives_on_android==1 | 524 }], # OS=="android" and use_icu_alternatives_on_android==1 |
| 525 ], | 525 ], |
| 526 } | 526 } |
| OLD | NEW |