# Copyright 2015 The Chromium Authors
# 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")
android_resources("customtabs_benchmark_apk_resources") {
sources = [
"res/layout/activity_web_view.xml",
"res/layout/main.xml",
"res/values/strings.xml",
]
}
android_apk("customtabs_benchmark_apk") {
sources = [
"java/src/org/chromium/customtabs/test/MainActivity.java",
"java/src/org/chromium/customtabs/test/WebViewActivity.java",
]
android_manifest = "java/AndroidManifest.xml"
min_sdk_version = 21
target_sdk_version = 33
apk_name = "CustomTabsBenchmark"
deps = [
":customtabs_benchmark_apk_resources",
"//third_party/androidx:androidx_browser_browser_java",
"//third_party/androidx:androidx_core_core_java",
]
}