| 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 | 8 |
| 9 static_library("utility") { | 9 static_library("utility") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//media", | 51 "//media", |
| 52 "//net:net_with_v8", | 52 "//net:net_with_v8", |
| 53 "//services/shell/public/cpp", | 53 "//services/service_manager/public/cpp", |
| 54 "//skia", | 54 "//skia", |
| 55 "//sql", | 55 "//sql", |
| 56 "//third_party/libxml", | 56 "//third_party/libxml", |
| 57 ] | 57 ] |
| 58 | 58 |
| 59 if (!is_android) { | 59 if (!is_android) { |
| 60 sources += [ | 60 sources += [ |
| 61 "importer/bookmark_html_reader.cc", | 61 "importer/bookmark_html_reader.cc", |
| 62 "importer/bookmark_html_reader.h", | 62 "importer/bookmark_html_reader.h", |
| 63 "importer/bookmarks_file_importer.cc", | 63 "importer/bookmarks_file_importer.cc", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 sources -= [ | 168 sources -= [ |
| 169 "printing_handler.cc", | 169 "printing_handler.cc", |
| 170 "printing_handler.h", | 170 "printing_handler.h", |
| 171 ] | 171 ] |
| 172 } | 172 } |
| 173 | 173 |
| 174 if (is_mac && safe_browsing_mode == 1) { | 174 if (is_mac && safe_browsing_mode == 1) { |
| 175 deps += [ "//chrome/utility/safe_browsing/mac" ] | 175 deps += [ "//chrome/utility/safe_browsing/mac" ] |
| 176 } | 176 } |
| 177 } | 177 } |
| OLD | NEW |