1# Copyright 2019 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/android/rules.gni")
6
7android_library("java") {
8  sources = [ "java/src/org/chromium/chrome/browser/notifications/chime/ChimeSession.java" ]
9
10  annotation_processor_deps = [ "//base/android/jni_generator:jni_processor" ]
11
12  deps = [
13    "//base:base_java",
14    "//base:jni_java",
15    "//chrome/android/modules/chime/public:java",
16  ]
17}
18
19source_set("android") {
20  sources = [
21    "features.cc",
22    "features.h",
23  ]
24
25  deps = [
26    ":jni_headers",
27    "//base",
28  ]
29}
30
31generate_jni("jni_headers") {
32  visibility = [ ":*" ]
33
34  sources = [ "java/src/org/chromium/chrome/browser/notifications/chime/ChimeSession.java" ]
35}
36