| OLD | NEW |
| 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 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 | 10 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "profile_import_handler.cc", | 92 "profile_import_handler.cc", |
| 93 "profile_import_handler.h", | 93 "profile_import_handler.h", |
| 94 ] | 94 ] |
| 95 deps += [ | 95 deps += [ |
| 96 "//chrome/common:mojo_bindings", | 96 "//chrome/common:mojo_bindings", |
| 97 "//chrome/common/importer:interfaces", | 97 "//chrome/common/importer:interfaces", |
| 98 "//net:net_utility_services", | 98 "//net:net_utility_services", |
| 99 ] | 99 ] |
| 100 } | 100 } |
| 101 | 101 |
| 102 if (is_android) { |
| 103 deps += [ "//components/payments/content/android/utility" ] |
| 104 } |
| 105 |
| 102 if (enable_extensions) { | 106 if (enable_extensions) { |
| 103 sources += [ | 107 sources += [ |
| 104 "extensions/extensions_handler.cc", | 108 "extensions/extensions_handler.cc", |
| 105 "extensions/extensions_handler.h", | 109 "extensions/extensions_handler.h", |
| 106 "image_writer/disk_unmounter_mac.cc", | 110 "image_writer/disk_unmounter_mac.cc", |
| 107 "image_writer/disk_unmounter_mac.h", | 111 "image_writer/disk_unmounter_mac.h", |
| 108 "image_writer/error_messages.cc", | 112 "image_writer/error_messages.cc", |
| 109 "image_writer/error_messages.h", | 113 "image_writer/error_messages.h", |
| 110 "image_writer/image_writer.cc", | 114 "image_writer/image_writer.cc", |
| 111 "image_writer/image_writer.h", | 115 "image_writer/image_writer.h", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 sources -= [ | 176 sources -= [ |
| 173 "printing_handler.cc", | 177 "printing_handler.cc", |
| 174 "printing_handler.h", | 178 "printing_handler.h", |
| 175 ] | 179 ] |
| 176 } | 180 } |
| 177 | 181 |
| 178 if (is_mac && safe_browsing_mode == 1) { | 182 if (is_mac && safe_browsing_mode == 1) { |
| 179 deps += [ "//chrome/utility/safe_browsing/mac" ] | 183 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 180 } | 184 } |
| 181 } | 185 } |
| OLD | NEW |