| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 "test/quic_test_server.h", | 404 "test/quic_test_server.h", |
| 405 "test/sdch_test_util.cc", | 405 "test/sdch_test_util.cc", |
| 406 "test/sdch_test_util.h", | 406 "test/sdch_test_util.h", |
| 407 "test/test_upload_data_stream_handler.cc", | 407 "test/test_upload_data_stream_handler.cc", |
| 408 "test/test_upload_data_stream_handler.h", | 408 "test/test_upload_data_stream_handler.h", |
| 409 ] | 409 ] |
| 410 | 410 |
| 411 deps = [ | 411 deps = [ |
| 412 ":cronet_static", | 412 ":cronet_static", |
| 413 ":cronet_tests_jni_headers", | 413 ":cronet_tests_jni_headers", |
| 414 ":cronet_version_header", |
| 414 "//base", | 415 "//base", |
| 415 "//base:i18n", | 416 "//base:i18n", |
| 416 "//net", | 417 "//net", |
| 417 "//net:simple_quic_tools", | 418 "//net:simple_quic_tools", |
| 418 "//net:test_support", | 419 "//net:test_support", |
| 419 "//third_party/icu", | 420 "//third_party/icu", |
| 420 ] | 421 ] |
| 421 | 422 |
| 423 include_dirs = [ _cronet_version_header_include_dir ] |
| 424 |
| 422 if (cronet_enable_data_reduction_proxy_support) { | 425 if (cronet_enable_data_reduction_proxy_support) { |
| 423 deps += [ "//components/data_reduction_proxy/core/browser" ] | 426 deps += [ "//components/data_reduction_proxy/core/browser" ] |
| 424 } | 427 } |
| 425 } | 428 } |
| 426 | 429 |
| 427 android_resources("cronet_test_apk_resources") { | 430 android_resources("cronet_test_apk_resources") { |
| 428 testonly = true | 431 testonly = true |
| 429 resource_dirs = [ "test/res" ] | 432 resource_dirs = [ "test/res" ] |
| 430 android_manifest = "test/AndroidManifest.xml" | 433 android_manifest = "test/AndroidManifest.xml" |
| 431 } | 434 } |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 ":jar_cronet_sample_source", | 842 ":jar_cronet_sample_source", |
| 840 ":repackage_extracted_jars", | 843 ":repackage_extracted_jars", |
| 841 ] | 844 ] |
| 842 } | 845 } |
| 843 | 846 |
| 844 buildflag_header("features") { | 847 buildflag_header("features") { |
| 845 header = "../cronet_features.h" | 848 header = "../cronet_features.h" |
| 846 | 849 |
| 847 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$cronet_enable_bidirectional_stream" ] | 850 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$cronet_enable_bidirectional_stream" ] |
| 848 } | 851 } |
| OLD | NEW |