Commit 0ffe4fc3 authored by Miran.Karic's avatar Miran.Karic Committed by Commit bot

Add icu libraries to fuzzer dependencies

In component build, fuzzer did not link with icu libraries, causing
errors. By adding icu libraries to dependencies fuzzer links correctly.

BUG=
TEST=fuzzer/*

Review-Url: https://codereview.chromium.org/2510063002
Cr-Commit-Position: refs/heads/master@{#41098}
parent d3f2213b
...@@ -2402,6 +2402,10 @@ v8_source_set("fuzzer_support") { ...@@ -2402,6 +2402,10 @@ v8_source_set("fuzzer_support") {
":v8_libbase", ":v8_libbase",
":v8_libplatform", ":v8_libplatform",
] ]
if (v8_enable_i18n_support) {
deps += [ "//third_party/icu" ]
}
} }
v8_source_set("simple_fuzzer") { v8_source_set("simple_fuzzer") {
......
...@@ -425,6 +425,14 @@ ...@@ -425,6 +425,14 @@
'fuzzer-support.cc', 'fuzzer-support.cc',
'fuzzer-support.h', 'fuzzer-support.h',
], ],
'conditions': [
['v8_enable_i18n_support==1', {
'dependencies': [
'<(icu_gyp_path):icui18n',
'<(icu_gyp_path):icuuc',
],
}],
],
}, },
], ],
'conditions': [ 'conditions': [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment