Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1251)

Unified Diff: device/battery/BUILD.gn

Issue 592153002: Replace Chrome IPC with Mojo IPC for querying BatteryStatus service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Tom's comment. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/data/battery_status/battery_status_promise_resolution_test.html ('k') | device/battery/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/battery/BUILD.gn
diff --git a/device/battery/BUILD.gn b/device/battery/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..498643c7b785c7423f5585629b70b5200c11297d
--- /dev/null
+++ b/device/battery/BUILD.gn
@@ -0,0 +1,103 @@
+# 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/features.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
+
+component("battery") {
+ output_name = "device_battery"
+
+ sources = [
+ "battery_export.h",
+ "battery_monitor_impl.cc",
+ "battery_monitor_impl.h",
+ "battery_status_manager_android.cc",
+ "battery_status_manager_android.h",
+ "battery_status_manager_chromeos.cc",
+ "battery_status_manager_default.cc",
+ "battery_status_manager_linux.cc",
+ "battery_status_manager_linux.h",
+ "battery_status_manager_mac.cc",
+ "battery_status_manager_win.cc",
+ "battery_status_manager_win.h",
+ "battery_status_service.cc",
+ "battery_status_service.h",
+ ]
+
+ defines = [
+ "DEVICE_BATTERY_IMPLEMENTATION",
+ ]
+
+ deps = [
+ ":mojo_bindings",
+ "//base",
+ "//base/third_party/dynamic_annotations",
+ "//mojo/environment:chromium",
+ "//mojo/public/cpp/bindings",
+ "//mojo/edk/system",
+ ]
+
+ if (is_android) {
+ deps += [
+ "//device/battery/android:battery_jni_headers",
+ ]
+ sources += [
+ "android/battery_jni_registrar.h",
+ "android/battery_jni_registrar.cc",
+ ]
+ sources -= [
+ "battery_status_manager_default.cc",
+ ]
+ }
+
+ if (is_chromeos) {
+ configs += [
+ "//build/config/linux:dbus",
+ ]
+ deps += [
+ "//chromeos:power_manager_proto",
+ ]
+ sources -= [
+ "battery_status_manager_default.cc",
+ "battery_status_manager_linux.cc",
+ ]
+ }
+
+ if (is_linux) {
+ if (use_dbus) {
+ configs += [
+ "//build/config/linux:dbus",
+ ]
+ deps += [
+ "//dbus"
+ ]
+ sources -= [
+ "battery_status_manager_default.cc",
+ ]
+ } else {
+ sources -= [
+ "battery_status_manager_linux.cc",
+ ]
+ }
+ }
+
+ if (is_mac) {
+ sources -= [
+ "battery_status_manager_default.cc",
+ ]
+ }
+
+ if (is_win) {
+ sources -= [
+ "battery_status_manager_default.cc",
+ ]
+ }
+}
+
+mojom("mojo_bindings") {
+ sources = [
+ "battery_monitor.mojom",
+ "battery_status.mojom",
+ ]
+}
« no previous file with comments | « content/test/data/battery_status/battery_status_promise_resolution_test.html ('k') | device/battery/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698