# Copyright 2014 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("chromedriver_webview_shell_resources") {
sources = [
"java/res/layout/main_layout.xml",
"java/res/mipmap/icon.png",
]
android_manifest = "java/AndroidManifest.xml"
}
android_apk("chromedriver_webview_shell_apk") {
apk_name = "ChromeDriverWebViewShell"
deps = [ ":chromedriver_webview_shell_resources" ]
sources = [ "java/src/org/chromium/chromedriver_webview_shell/Main.java" ]
android_manifest = "java/AndroidManifest.xml"
}