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

Unified Diff: chrome/service/BUILD.gn

Issue 381643003: Add chrome/service to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/BUILD.gn
diff --git a/chrome/service/BUILD.gn b/chrome/service/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..6179bfb1392acfbfc7d8381b3595ac6979a285df
--- /dev/null
+++ b/chrome/service/BUILD.gn
@@ -0,0 +1,71 @@
+# 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")
+
+static_library("service") {
+ sources = [
+ "cloud_print/cdd_conversion_win.cc",
+ "cloud_print/cdd_conversion_win.h",
+ "cloud_print/cloud_print_auth.cc",
+ "cloud_print/cloud_print_auth.h",
+ "cloud_print/cloud_print_connector.cc",
+ "cloud_print/cloud_print_connector.h",
+ "cloud_print/cloud_print_proxy.cc",
+ "cloud_print/cloud_print_proxy.h",
+ "cloud_print/cloud_print_proxy_backend.cc",
+ "cloud_print/cloud_print_proxy_backend.h",
+ "cloud_print/cloud_print_service_helpers.cc",
+ "cloud_print/cloud_print_service_helpers.h",
+ "cloud_print/cloud_print_token_store.cc",
+ "cloud_print/cloud_print_token_store.h",
+ "cloud_print/cloud_print_url_fetcher.cc",
+ "cloud_print/cloud_print_url_fetcher.h",
+ "cloud_print/cloud_print_wipeout.cc",
+ "cloud_print/cloud_print_wipeout.h",
+ "cloud_print/connector_settings.cc",
+ "cloud_print/connector_settings.h",
+ "cloud_print/job_status_updater.cc",
+ "cloud_print/job_status_updater.h",
+ "cloud_print/print_system.cc",
+ "cloud_print/print_system.h",
+ "cloud_print/print_system_win.cc",
+ "cloud_print/printer_job_handler.cc",
+ "cloud_print/printer_job_handler.h",
+ "cloud_print/printer_job_queue_handler.cc",
+ "cloud_print/printer_job_queue_handler.h",
+ "net/service_url_request_context_getter.cc",
+ "net/service_url_request_context_getter.h",
+ "service_ipc_server.cc",
+ "service_ipc_server.h",
+ "service_main.cc",
+ "service_process.cc",
+ "service_process.h",
+ "service_process_prefs.cc",
+ "service_process_prefs.h",
+ "service_utility_process_host.cc",
+ "service_utility_process_host.h",
+ ]
+
+ deps = [
+ "//chrome:strings",
+ "//chrome/common",
+ "//chrome/common/net",
+ "//base",
+ "//components/cloud_devices/common",
+ "//google_apis",
+ "//net",
+ "//printing",
+ "//skia",
+ #'../jingle/jingle.gyp:notifier', TODO(GYP)
+ #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP)
+ ]
+
+ if (use_cups) {
+ sources += [ "cloud_print/print_system_cups.cc" ]
+ configs += [ "//printing:cups" ]
+ } else if (!is_win) {
+ sources += [ "cloud_print/print_system_dummp.cc" ]
+ }
+}
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698