# Copyright 2019 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")
import("//chrome/android/features/android_library_factory_tmpl.gni")
_factory_sources = [ "java/src/org/chromium/chrome/browser/keyboard_accessory/ManualFillingComponentFactory.java" ]
android_library_factory("public_java") {
# These deps will be inherited by the resulting android_library target.
deps = [ "//chrome/android/features/keyboard_accessory/public:public_java" ]
# This internal file will be replaced by a generated file so the resulting
# android_library target does not actually depend on this internal file.
sources = _factory_sources
}
android_library("internal_java") {
deps =
[ "//chrome/android/features/keyboard_accessory/internal:internal_java" ]
sources = _factory_sources
}