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

Unified Diff: cloud_print/service/BUILD.gn

Issue 1047463003: Add cloud_print_unittests to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remoting_targets
Patch Set: fix dependency on content Created 5 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 | « cloud_print/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/service/BUILD.gn
diff --git a/cloud_print/service/BUILD.gn b/cloud_print/service/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..df6d63650bbe488c8c4d4783d4a83703fd64f318
--- /dev/null
+++ b/cloud_print/service/BUILD.gn
@@ -0,0 +1,50 @@
+# Copyright 2015 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("//tools/grit/grit_rule.gni")
+
+source_set("cloud_print_service_lib") {
+ sources = [
+ "//cloud_print/common/win/cloud_print_utils.cc",
+ "//cloud_print/common/win/cloud_print_utils.h",
+ "service_constants.cc",
+ "service_constants.h",
+ "service_state.cc",
+ "service_state.h",
+ "service_switches.cc",
+ "service_switches.h",
+ "win/chrome_launcher.cc",
+ "win/chrome_launcher.h",
+ "win/local_security_policy.cc",
+ "win/local_security_policy.h",
+ "win/service_controller.cc",
+ "win/service_controller.h",
+ "win/service_listener.cc",
+ "win/service_listener.h",
+ "win/service_utils.cc",
+ "win/service_utils.h",
+ "win/setup_listener.cc",
+ "win/setup_listener.h",
+ ]
+
+ deps = [
+ ":service_resources",
+ "//base",
+ "//base:base_static",
+ "//base/third_party/dynamic_annotations",
+ "//content/public/common",
+ "//google_apis",
+ "//ipc",
+ "//net",
+ "//url",
+ ]
+}
+
+grit("service_resources") {
+ source = "win/service_resources.grd"
+ outputs = [
+ "resources.h",
+ "service_resources_en.rc",
+ ]
+}
« no previous file with comments | « cloud_print/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698