blob: 156255a439dd8e6064f21922e2b8c1b7548487a2 [file] [log] [blame]
# Copyright 2020 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("partner_browser_customizations_example_apk_resources") {
sources = [
"res/values/bookmarks_icons.xml",
"res/values/strings.xml",
]
}
android_apk("partner_browser_customizations_example_apk") {
sources = [
"src/org/chromium/example/partnercustomizations/PartnerBookmarksProviderExample.java",
"src/org/chromium/example/partnercustomizations/PartnerBrowserCustomizationsProviderExample.java",
]
android_manifest = "AndroidManifest.xml"
min_sdk_version = 23
target_sdk_version = 23
apk_name = "PartnerCustomizationProviderExample"
deps = [ ":partner_browser_customizations_example_apk_resources" ]
chromium_code = false
never_incremental = true
}