summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/selection/android/BUILD.gn
blob: 1e286e486a7c99c782494b2a77d29729e3d6b3ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2022 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_library("java") {
  sources = [ "java/src/org/chromium/chrome/browser/selection/SelectionPopupBackPressHandler.java" ]

  deps = [
    "//base:base_java",
    "//chrome/browser/tab:java",
    "//chrome/browser/tabmodel:java",
    "//components/browser_ui/widget/android:java",
    "//content/public/android:content_full_java",
  ]
}

android_library("javatests") {
  testonly = true

  sources = [ "java/src/org/chromium/chrome/browser/selection/SelectionPopupBackPressTest.java" ]

  deps = [
    "//base:base_java",
    "//base:base_java_test_support",
    "//chrome/browser/flags:java",
    "//chrome/test/android:chrome_java_integration_test_support",
    "//content/public/android:content_full_java",
    "//content/public/test/android:content_java_test_support",
    "//third_party/android_deps:espresso_java",
    "//third_party/androidx:androidx_test_runner_java",
    "//third_party/junit:junit",
  ]
}