| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "//content/public/common", | 46 "//content/public/common", |
| 47 "//content/public/utility", | 47 "//content/public/utility", |
| 48 "//courgette:courgette_lib", | 48 "//courgette:courgette_lib", |
| 49 "//extensions/features", | 49 "//extensions/features", |
| 50 "//ipc", | 50 "//ipc", |
| 51 "//media", | 51 "//media", |
| 52 "//net:net_with_v8", | 52 "//net:net_with_v8", |
| 53 "//printing/features", | 53 "//printing/features", |
| 54 "//services/image_decoder:lib", | 54 "//services/image_decoder:lib", |
| 55 "//services/image_decoder/public/cpp", | 55 "//services/image_decoder/public/cpp", |
| 56 "//services/pdf_compositor:lib", |
| 57 "//services/pdf_compositor/public/cpp", |
| 56 "//services/service_manager/public/cpp", | 58 "//services/service_manager/public/cpp", |
| 57 "//skia", | 59 "//skia", |
| 58 "//sql", | 60 "//sql", |
| 59 "//third_party/libxml", | 61 "//third_party/libxml", |
| 60 ] | 62 ] |
| 61 | 63 |
| 62 if (!is_android) { | 64 if (!is_android) { |
| 63 sources += [ | 65 sources += [ |
| 64 "importer/bookmark_html_reader.cc", | 66 "importer/bookmark_html_reader.cc", |
| 65 "importer/bookmark_html_reader.h", | 67 "importer/bookmark_html_reader.h", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 sources -= [ | 174 sources -= [ |
| 173 "printing_handler.cc", | 175 "printing_handler.cc", |
| 174 "printing_handler.h", | 176 "printing_handler.h", |
| 175 ] | 177 ] |
| 176 } | 178 } |
| 177 | 179 |
| 178 if (is_mac && safe_browsing_mode == 1) { | 180 if (is_mac && safe_browsing_mode == 1) { |
| 179 deps += [ "//chrome/utility/safe_browsing/mac" ] | 181 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 180 } | 182 } |
| 181 } | 183 } |
| OLD | NEW |