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

Unified Diff: device/power_save_blocker/BUILD.gn

Issue 2075153002: Reland of 'Move content/browser/power_save_blocker to //device/power_save_blocker' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missing libs for component mac Created 4 years, 6 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 | « device/BUILD.gn ('k') | device/power_save_blocker/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/power_save_blocker/BUILD.gn
diff --git a/device/power_save_blocker/BUILD.gn b/device/power_save_blocker/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..abd185675aa1371706f45386afcfa572f1ca57da
--- /dev/null
+++ b/device/power_save_blocker/BUILD.gn
@@ -0,0 +1,96 @@
+# Copyright 2016 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("//build/config/ui.gni")
+
+if (is_android) {
+ import("//build/config/android/rules.gni")
+}
+
+component("power_save_blocker") {
+ sources = [
+ "power_save_blocker.h",
+ "power_save_blocker_android.cc",
+ "power_save_blocker_android.h",
+ "power_save_blocker_chromeos.cc",
+ "power_save_blocker_impl.cc",
+ "power_save_blocker_impl.h",
+ "power_save_blocker_mac.cc",
+ "power_save_blocker_ozone.cc",
+ "power_save_blocker_win.cc",
+ "power_save_blocker_x11.cc",
+ ]
+
+ defines = [ "DEVICE_POWER_SAVE_BLOCKER_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ ]
+
+ if (use_dbus) {
+ deps += [ "//dbus" ]
+ }
+
+ if (use_x11) {
+ configs += [ "//build/config/linux:x11" ]
+ if (!is_chromeos) {
+ configs += [ "//build/config/linux:xscrnsaver" ]
+ }
+ deps += [ "//ui/gfx/x" ]
+ }
+
+ # Dealing with power_save_blocker_{x11,ozone}.cc is a little complicated
+ # given the interaction between os_chromeos and the feature flags for X11 and
+ # ozone, so do it all in one spot.
+ if (is_chromeos || !use_ozone) {
+ sources -= [ "power_save_blocker_ozone.cc" ]
+ }
+ if (is_chromeos || !use_x11) {
+ sources -= [ "power_save_blocker_x11.cc" ]
+ }
+
+ if (is_android) {
+ sources += [
+ "power_save_blocker_jni_registrar.cc",
+ "power_save_blocker_jni_registrar.h",
+ ]
+
+ deps += [
+ ":jni_headers",
+ "//ui/android",
+ ]
+ }
+
+ if (is_chromeos) {
+ deps += [
+ "//chromeos",
+ "//chromeos:power_manager_proto",
+ ]
+ }
+
+ if (is_mac) {
+ libs = [
+ "CoreFoundation.framework",
+ "IOKit.framework",
+ ]
+ }
+}
+
+if (is_android) {
+ java_sources_needing_jni = [ "android/java/src/org/chromium/device/power_save_blocker/PowerSaveBlocker.java" ]
+
+ generate_jni("jni_headers") {
+ sources = java_sources_needing_jni
+ jni_package = "device"
+ }
+
+ android_library("java") {
+ java_files = java_sources_needing_jni
+ deps = [
+ "//base:base_java",
+ "//ui/android:ui_java",
+ ]
+ }
+}
« no previous file with comments | « device/BUILD.gn ('k') | device/power_save_blocker/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698