summaryrefslogtreecommitdiffstats
path: root/device/battery/android/BUILD.gn
blob: 503a10c5f32db98d28c8169da6ded9ff82c5d23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2014 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/config.gni")
import("//build/config/android/rules.gni")

android_library("battery_monitor_android") {
  java_files = [
    "java/src/org/chromium/device/battery/BatteryStatusManager.java",
    "java/src/org/chromium/device/battery/BatteryMonitorImpl.java",
    "java/src/org/chromium/device/battery/BatteryMonitorFactory.java",
  ]

  deps = [
    "//base:base_java",
    "//device/battery:mojo_bindings_java",
    "//third_party/jsr-305:jsr_305_javalib",
    "//third_party/mojo/src/mojo/public/java:bindings",
    "//third_party/mojo/src/mojo/public/java:system",
  ]
}