Chromium Code Reviews| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 43 "//components/search_engines", | 43 "//components/search_engines", |
| 44 "//components/strings", | 44 "//components/strings", |
| 45 "//components/url_formatter", | 45 "//components/url_formatter", |
| 46 "//content/public/child", | 46 "//content/public/child", |
| 47 "//content/public/common", | 47 "//content/public/common", |
| 48 "//content/public/utility", | 48 "//content/public/utility", |
| 49 "//courgette:courgette_lib", | 49 "//courgette:courgette_lib", |
| 50 "//extensions/features", | 50 "//extensions/features", |
| 51 "//ipc", | 51 "//ipc", |
| 52 "//media", | 52 "//media", |
| 53 "//net:net_utility_services", | |
|
mmenke
2017/06/07 19:18:38
This isn't a real dependency, but gn --check doesn
| |
| 53 "//net:net_with_v8", | 54 "//net:net_with_v8", |
| 54 "//printing/features", | 55 "//printing/features", |
| 55 "//services/service_manager/public/cpp", | 56 "//services/service_manager/public/cpp", |
| 56 "//skia", | 57 "//skia", |
| 57 "//sql", | 58 "//sql", |
| 58 "//third_party/libxml", | 59 "//third_party/libxml", |
| 59 ] | 60 ] |
| 60 | 61 |
| 61 if (!is_android) { | 62 if (!is_android) { |
| 62 sources += [ | 63 sources += [ |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 87 "importer/nss_decryptor_win.cc", | 88 "importer/nss_decryptor_win.cc", |
| 88 "importer/nss_decryptor_win.h", | 89 "importer/nss_decryptor_win.h", |
| 89 "importer/safari_importer.h", | 90 "importer/safari_importer.h", |
| 90 "importer/safari_importer.mm", | 91 "importer/safari_importer.mm", |
| 91 "profile_import_handler.cc", | 92 "profile_import_handler.cc", |
| 92 "profile_import_handler.h", | 93 "profile_import_handler.h", |
| 93 ] | 94 ] |
| 94 deps += [ | 95 deps += [ |
| 95 "//chrome/common:mojo_bindings", | 96 "//chrome/common:mojo_bindings", |
| 96 "//chrome/common/importer:interfaces", | 97 "//chrome/common/importer:interfaces", |
| 97 "//net:net_utility_services", | |
| 98 "//services/data_decoder:lib", | 98 "//services/data_decoder:lib", |
| 99 ] | 99 ] |
| 100 } | 100 } |
| 101 | 101 |
| 102 if (enable_extensions) { | 102 if (enable_extensions) { |
| 103 sources += [ | 103 sources += [ |
| 104 "extensions/extensions_handler.cc", | 104 "extensions/extensions_handler.cc", |
| 105 "extensions/extensions_handler.h", | 105 "extensions/extensions_handler.h", |
| 106 "image_writer/disk_unmounter_mac.cc", | 106 "image_writer/disk_unmounter_mac.cc", |
| 107 "image_writer/disk_unmounter_mac.h", | 107 "image_writer/disk_unmounter_mac.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 186 deps += [ "//chrome/utility/safe_browsing/mac" ] | 186 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 187 } | 187 } |
| 188 | 188 |
| 189 if (!is_android) { | 189 if (!is_android) { |
| 190 sources += [ | 190 sources += [ |
| 191 "media_router/dial_device_description_parser_impl.cc", | 191 "media_router/dial_device_description_parser_impl.cc", |
| 192 "media_router/dial_device_description_parser_impl.h", | 192 "media_router/dial_device_description_parser_impl.h", |
| 193 ] | 193 ] |
| 194 } | 194 } |
| 195 } | 195 } |
| OLD | NEW |