mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
# Copyright 2017 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.
|
|
|
|
import("//components/cronet/native/include/headers.gni")
|
|
import("//testing/test.gni")
|
|
|
|
source_set("cronet_native_testutil") {
|
|
testonly = true
|
|
|
|
deps = [
|
|
"//base",
|
|
"//components/cronet/native:cronet_native_headers",
|
|
"//net:test_support",
|
|
]
|
|
|
|
configs += [ "//components/cronet/native:cronet_native_include_config" ]
|
|
public_configs = [ "//components/cronet/native:cronet_native_include_config" ]
|
|
|
|
sources = [
|
|
"test_util.cc",
|
|
"test_util.h",
|
|
]
|
|
}
|
|
|
|
# Tests for publicly exported Cronet Native API. This target does NOT depend on
|
|
# cronet_native_impl to prevent static linking of implementation into test app.
|
|
source_set("cronet_native_tests") {
|
|
testonly = true
|
|
|
|
deps = [
|
|
":cronet_native_testutil",
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//components/cronet/native:cronet_native_headers",
|
|
"//components/cronet/test:test_support",
|
|
"//net:test_support",
|
|
"//testing/gtest",
|
|
]
|
|
|
|
configs += [ "//components/cronet/native:cronet_native_include_config" ]
|
|
|
|
sources = [
|
|
"buffer_test.cc",
|
|
"engine_test.cc",
|
|
"executors_test.cc",
|
|
"test_url_request_callback.cc",
|
|
"test_url_request_callback.h",
|
|
"url_request_test.cc",
|
|
]
|
|
}
|