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

Side by Side Diff: chrome/service/BUILD.gn

Issue 754223003: gn format //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update for multiline output Created 6 years 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
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 static_library("service") { 7 static_library("service") {
8 sources = [ 8 sources = [
9 "cloud_print/cdd_conversion_win.cc", 9 "cloud_print/cdd_conversion_win.cc",
10 "cloud_print/cdd_conversion_win.h", 10 "cloud_print/cdd_conversion_win.h",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "//chrome:strings", 50 "//chrome:strings",
51 "//chrome/common", 51 "//chrome/common",
52 "//chrome/common/net", 52 "//chrome/common/net",
53 "//base", 53 "//base",
54 "//components/cloud_devices/common", 54 "//components/cloud_devices/common",
55 "//google_apis", 55 "//google_apis",
56 "//jingle:notifier", 56 "//jingle:notifier",
57 "//net", 57 "//net",
58 "//printing", 58 "//printing",
59 "//skia", 59 "//skia",
60 "//third_party/libjingle" 60 "//third_party/libjingle",
61 ] 61 ]
62 62
63 if (use_cups) { 63 if (use_cups) {
64 sources += [ "cloud_print/print_system_cups.cc" ] 64 sources += [ "cloud_print/print_system_cups.cc" ]
65 configs += [ "//printing:cups" ] 65 configs += [ "//printing:cups" ]
66 } else if (is_win) { 66 } else if (is_win) {
67 sources += [ 67 sources += [
68 "service_utility_process_host.cc", 68 "service_utility_process_host.cc",
69 "service_utility_process_host.h", 69 "service_utility_process_host.h",
70 ] 70 ]
71 } else { 71 } else {
72 sources += [ "cloud_print/print_system_dummy.cc" ] 72 sources += [ "cloud_print/print_system_dummy.cc" ]
73 } 73 }
74 } 74 }
OLDNEW
« no previous file with comments | « chrome/renderer/BUILD.gn ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698