| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "//chrome/common:mojo_bindings", | 42 "//chrome/common:mojo_bindings", |
| 43 "//components/safe_json/utility", | 43 "//components/safe_json/utility", |
| 44 "//components/search_engines", | 44 "//components/search_engines", |
| 45 "//components/strings", | 45 "//components/strings", |
| 46 "//components/url_formatter", | 46 "//components/url_formatter", |
| 47 "//content/public/child", | 47 "//content/public/child", |
| 48 "//content/public/common", | 48 "//content/public/common", |
| 49 "//content/public/utility", | 49 "//content/public/utility", |
| 50 "//courgette:courgette_lib", | 50 "//courgette:courgette_lib", |
| 51 "//extensions/features", | 51 "//extensions/features", |
| 52 "//ipc", |
| 52 "//media", | 53 "//media", |
| 53 "//net:net_with_v8", | 54 "//net:net_with_v8", |
| 54 "//printing/features", | 55 "//printing/features", |
| 55 "//services/image_decoder:lib", | 56 "//services/image_decoder:lib", |
| 56 "//services/image_decoder/public/cpp", | 57 "//services/image_decoder/public/cpp", |
| 57 "//services/service_manager/public/cpp", | 58 "//services/service_manager/public/cpp", |
| 58 "//skia", | 59 "//skia", |
| 59 "//sql", | 60 "//sql", |
| 60 "//third_party/libxml", | 61 "//third_party/libxml", |
| 61 ] | 62 ] |
| (...skipping 111 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 |