From 02f77a411561ab8ad6a8febbe1a95391f1c9ffff Mon Sep 17 00:00:00 2001 From: tfarina Date: Thu, 17 Dec 2015 14:38:23 -0800 Subject: chrome: fix gn check errors for utility target Checked on Linux with the following command lines: $ gn gen out-gn/Release --args='is_debug=false is_component_build=false symbol_level=1' $ gn check out-gn/Release //chrome/utility/* BUG=367595,376000 R=thestig@chromium.org TBR=brettw@chromium.org Review URL: https://codereview.chromium.org/1534763003 Cr-Commit-Position: refs/heads/master@{#365923} --- chrome/utility/BUILD.gn | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'chrome/utility') diff --git a/chrome/utility/BUILD.gn b/chrome/utility/BUILD.gn index 62a69d1..edef316 100644 --- a/chrome/utility/BUILD.gn +++ b/chrome/utility/BUILD.gn @@ -34,10 +34,14 @@ static_library("utility") { "//components/search_engines", "//components/strings", "//components/url_formatter", + "//content/public/child", "//content/public/common", "//content/public/utility", + "//courgette:courgette_lib", "//media", + "//net:net_with_v8", "//skia", + "//sql", "//third_party/libxml", ] @@ -124,5 +128,10 @@ static_library("utility") { if (safe_browsing_mode == 1) { sources += rebase_path(gypi_values.chrome_utility_safe_browsing_sources, ".", "..") + deps += [ "//third_party/zlib" ] + } + + if (enable_pdf) { + deps += [ "//pdf" ] } } -- cgit v1.1