| 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 22 matching lines...) Expand all Loading... |
| 33 "//build/config/compiler:wexit_time_destructors", | 33 "//build/config/compiler:wexit_time_destructors", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 public_deps = [] | 36 public_deps = [] |
| 37 deps = [ | 37 deps = [ |
| 38 "//base", | 38 "//base", |
| 39 "//chrome:resources", | 39 "//chrome:resources", |
| 40 "//chrome:strings", | 40 "//chrome:strings", |
| 41 "//chrome/common", | 41 "//chrome/common", |
| 42 "//chrome/common:mojo_bindings", | 42 "//chrome/common:mojo_bindings", |
| 43 "//components/printing/common:interfaces", |
| 43 "//components/safe_json/utility", | 44 "//components/safe_json/utility", |
| 44 "//components/search_engines", | 45 "//components/search_engines", |
| 45 "//components/strings", | 46 "//components/strings", |
| 46 "//components/url_formatter", | 47 "//components/url_formatter", |
| 47 "//content/public/child", | 48 "//content/public/child", |
| 48 "//content/public/common", | 49 "//content/public/common", |
| 49 "//content/public/utility", | 50 "//content/public/utility", |
| 50 "//courgette:courgette_lib", | 51 "//courgette:courgette_lib", |
| 51 "//extensions/features", | 52 "//extensions/features", |
| 52 "//media", | 53 "//media", |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 sources -= [ | 174 sources -= [ |
| 174 "printing_handler.cc", | 175 "printing_handler.cc", |
| 175 "printing_handler.h", | 176 "printing_handler.h", |
| 176 ] | 177 ] |
| 177 } | 178 } |
| 178 | 179 |
| 179 if (is_mac && safe_browsing_mode == 1) { | 180 if (is_mac && safe_browsing_mode == 1) { |
| 180 deps += [ "//chrome/utility/safe_browsing/mac" ] | 181 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 181 } | 182 } |
| 182 } | 183 } |
| OLD | NEW |