| 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 gypi_values = exec_script("//build/gypi_to_gn.py", | 9 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 10 [ rebase_path("../chrome_utility.gypi") ], | 10 [ rebase_path("../chrome_utility.gypi") ], |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "//components/safe_json/utility", | 34 "//components/safe_json/utility", |
| 35 "//components/search_engines", | 35 "//components/search_engines", |
| 36 "//components/strings", | 36 "//components/strings", |
| 37 "//components/url_formatter", | 37 "//components/url_formatter", |
| 38 "//content/public/child", | 38 "//content/public/child", |
| 39 "//content/public/common", | 39 "//content/public/common", |
| 40 "//content/public/utility", | 40 "//content/public/utility", |
| 41 "//courgette:courgette_lib", | 41 "//courgette:courgette_lib", |
| 42 "//media", | 42 "//media", |
| 43 "//net:net_with_v8", | 43 "//net:net_with_v8", |
| 44 "//services/shell/public/cpp", |
| 44 "//skia", | 45 "//skia", |
| 45 "//sql", | 46 "//sql", |
| 46 "//third_party/libxml", | 47 "//third_party/libxml", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 if (!is_android) { | 50 if (!is_android) { |
| 50 deps += [ | 51 deps += [ |
| 51 "//chrome/common:mojo_bindings", | 52 "//chrome/common:mojo_bindings", |
| 52 "//net:net_utility_services", | 53 "//net:net_utility_services", |
| 53 ] | 54 ] |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 ] | 130 ] |
| 130 | 131 |
| 131 additional_configs = [ ":utility_ldflags" ] | 132 additional_configs = [ ":utility_ldflags" ] |
| 132 | 133 |
| 133 deps = [ | 134 deps = [ |
| 134 "//base", | 135 "//base", |
| 135 "//third_party/zlib", | 136 "//third_party/zlib", |
| 136 ] | 137 ] |
| 137 } | 138 } |
| 138 } | 139 } |
| OLD | NEW |