blob: b930eda0af783dc78ee109e119c81f6d8c2c06fd [file] [log] [blame]
# Copyright 2022 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("//build/config/android/rules.gni")
import("//testing/test.gni")
group("webview_js_sandbox_test_app") {
testonly = true
deps = [ ":webview_js_sandbox_test_app_test_apk" ]
}
instrumentation_test_apk("webview_js_sandbox_test_app_test_apk") {
apk_name = "WebViewJsSandboxTestAppTest"
android_manifest = "AndroidManifest.xml"
sources = [
"src/org/chromium/webview_js_sandbox_test/test/WebViewJsSandboxTest.java",
]
deps = [
"//android_webview/js_sandbox:js_sandbox_java",
"//base:base_java",
"//base:base_java_test_support",
"//third_party/androidx:androidx_test_runner_java",
"//third_party/junit:junit",
]
# Tell GN to ignore 'incremental_install' even if the user has it in their GN
# args because it's incompatible with 'use_webview_provider'.
never_incremental = true
use_webview_provider = system_webview_apk_target
}