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

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

Issue 2470283002: Convert profile import IPCs to Mojo (Closed)
Patch Set: Address review comments Created 4 years, 1 month 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
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sysroot.gni") 7 import("//build/config/sysroot.gni")
8 8
9 static_library("utility") { 9 static_library("utility") {
10 sources = [ 10 sources = [
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 "importer/nss_decryptor_mac.mm", 84 "importer/nss_decryptor_mac.mm",
85 "importer/nss_decryptor_win.cc", 85 "importer/nss_decryptor_win.cc",
86 "importer/nss_decryptor_win.h", 86 "importer/nss_decryptor_win.h",
87 "importer/safari_importer.h", 87 "importer/safari_importer.h",
88 "importer/safari_importer.mm", 88 "importer/safari_importer.mm",
89 "profile_import_handler.cc", 89 "profile_import_handler.cc",
90 "profile_import_handler.h", 90 "profile_import_handler.h",
91 ] 91 ]
92 deps += [ 92 deps += [
93 "//chrome/common:mojo_bindings", 93 "//chrome/common:mojo_bindings",
94 "//chrome/common/importer:interfaces",
94 "//net:net_utility_services", 95 "//net:net_utility_services",
95 ] 96 ]
96 } 97 }
97 98
98 if (enable_extensions) { 99 if (enable_extensions) {
99 sources += [ 100 sources += [
100 "extensions/extensions_handler.cc", 101 "extensions/extensions_handler.cc",
101 "extensions/extensions_handler.h", 102 "extensions/extensions_handler.h",
102 "image_writer/disk_unmounter_mac.cc", 103 "image_writer/disk_unmounter_mac.cc",
103 "image_writer/disk_unmounter_mac.h", 104 "image_writer/disk_unmounter_mac.h",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 sources -= [ 169 sources -= [
169 "printing_handler.cc", 170 "printing_handler.cc",
170 "printing_handler.h", 171 "printing_handler.h",
171 ] 172 ]
172 } 173 }
173 174
174 if (is_mac && safe_browsing_mode == 1) { 175 if (is_mac && safe_browsing_mode == 1) {
175 deps += [ "//chrome/utility/safe_browsing/mac" ] 176 deps += [ "//chrome/utility/safe_browsing/mac" ]
176 } 177 }
177 } 178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698