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

Unified Diff: chromeos/BUILD.gn

Issue 2764513002: Copy D-Bus service files to build output. (Closed)
Patch Set: Add README.md Created 3 years, 9 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 | « no previous file | chromeos/dbus/services/README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/BUILD.gn
diff --git a/chromeos/BUILD.gn b/chromeos/BUILD.gn
index ff5ae298c0e85f87b9fd316092ca85cc16102511..85829c4d7de2ec12e9cea02d30db0cbae1b56861 100644
--- a/chromeos/BUILD.gn
+++ b/chromeos/BUILD.gn
@@ -47,6 +47,9 @@ component("chromeos") {
"//third_party/protobuf:protobuf_lite",
"//url",
]
+ data_deps = [
+ ":dbus_service_files",
+ ]
sources = [
"accelerometer/accelerometer_reader.cc",
"accelerometer/accelerometer_reader.h",
@@ -461,6 +464,16 @@ component("chromeos") {
}
}
+copy("dbus_service_files") {
+ sources = [
+ "dbus/services/org.chromium.LibCrosService.conf",
+ "dbus/services/org.chromium.LivenessService.conf",
+ ]
+ outputs = [
+ "$root_out_dir/dbus/{{source_file_part}}",
+ ]
+}
+
# This must be a static library instead of a source set because some of the
# files pull in things with dependencies that aren't linked in all cases.
#
« no previous file with comments | « no previous file | chromeos/dbus/services/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698