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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/features.gni")
6
7 static_library("service") {
8 sources = [
9 "cloud_print/cdd_conversion_win.cc",
10 "cloud_print/cdd_conversion_win.h",
11 "cloud_print/cloud_print_auth.cc",
12 "cloud_print/cloud_print_auth.h",
13 "cloud_print/cloud_print_connector.cc",
14 "cloud_print/cloud_print_connector.h",
15 "cloud_print/cloud_print_proxy.cc",
16 "cloud_print/cloud_print_proxy.h",
17 "cloud_print/cloud_print_proxy_backend.cc",
18 "cloud_print/cloud_print_proxy_backend.h",
19 "cloud_print/cloud_print_service_helpers.cc",
20 "cloud_print/cloud_print_service_helpers.h",
21 "cloud_print/cloud_print_token_store.cc",
22 "cloud_print/cloud_print_token_store.h",
23 "cloud_print/cloud_print_url_fetcher.cc",
24 "cloud_print/cloud_print_url_fetcher.h",
25 "cloud_print/cloud_print_wipeout.cc",
26 "cloud_print/cloud_print_wipeout.h",
27 "cloud_print/connector_settings.cc",
28 "cloud_print/connector_settings.h",
29 "cloud_print/job_status_updater.cc",
30 "cloud_print/job_status_updater.h",
31 "cloud_print/print_system.cc",
32 "cloud_print/print_system.h",
33 "cloud_print/print_system_win.cc",
34 "cloud_print/printer_job_handler.cc",
35 "cloud_print/printer_job_handler.h",
36 "cloud_print/printer_job_queue_handler.cc",
37 "cloud_print/printer_job_queue_handler.h",
38 "net/service_url_request_context_getter.cc",
39 "net/service_url_request_context_getter.h",
40 "service_ipc_server.cc",
41 "service_ipc_server.h",
42 "service_main.cc",
43 "service_process.cc",
44 "service_process.h",
45 "service_process_prefs.cc",
46 "service_process_prefs.h",
47 "service_utility_process_host.cc",
48 "service_utility_process_host.h",
49 ]
50
51 deps = [
52 "//chrome:strings",
53 "//chrome/common",
54 "//chrome/common/net",
55 "//base",
56 "//components/cloud_devices/common",
57 "//google_apis",
58 "//net",
59 "//printing",
60 "//skia",
61 #'../jingle/jingle.gyp:notifier', TODO(GYP)
62 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP)
63 ]
64
65 if (use_cups) {
66 sources += [ "cloud_print/print_system_cups.cc" ]
67 configs += [ "//printing:cups" ]
68 } else if (!is_win) {
69 sources += [ "cloud_print/print_system_dummp.cc" ]
70 }
71 }
OLDNEW
« 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