summaryrefslogtreecommitdiffstats
path: root/chromium/components/spellcheck/browser/android/BUILD.gn
blob: dd8c1576368c64894e7e06bf433b1c5aba833551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2016 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("//third_party/jni_zero/jni_zero.gni")

generate_jni("jni_headers") {
  sources = [ "java/src/org/chromium/components/spellcheck/SpellCheckerSessionBridge.java" ]
}

android_library("java") {
  deps = [
    "//base:base_java",
    "//build/android:build_java",
    "//third_party/jni_zero:jni_zero_java",
  ]

  srcjar_deps = [ ":jni_headers" ]
  sources = [ "java/src/org/chromium/components/spellcheck/SpellCheckerSessionBridge.java" ]
}