blob: 4ff7c65fd3406898fc771fe7e92b0f822b1887af [file] [log] [blame]
# Copyright 2020 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")
android_library("java") {
sources = [
"java/src/org/chromium/components/browser_ui/util/BrowserControlsVisibilityDelegate.java",
"java/src/org/chromium/components/browser_ui/util/ComposedBrowserControlsVisibilityDelegate.java",
]
deps = [
"//base:base_java",
"//content/public/android:content_java",
]
}
java_library("junit") {
# Skip platform checks since Robolectric depends on requires_android targets.
bypass_platform_checks = true
testonly = true
sources = [ "java/src/org/chromium/components/browser_ui/util/ComposedBrowserControlsVisibilityDelegateTest.java" ]
deps = [
":java",
"//base:base_java",
"//base:base_java_test_support",
"//base:base_junit_test_support",
"//base/test:test_support_java",
]
}