# Copyright 2024 The Chromium Authors | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
source_set("battery") { | |
sources = [ | |
"battery_metrics.cc", | |
"battery_metrics.h", | |
"battery_saver.cc", | |
"battery_saver.h", | |
] | |
public_deps = [ | |
"//base", | |
"//mojo/public/cpp/bindings", | |
"//services/device/public/mojom", | |
] | |
deps = [ "//content/public/browser" ] | |
if (is_android) { | |
deps += [ "//chrome/browser/battery/android:jni_headers" ] | |
} | |
} |