Commit ab341eab authored by Ilija.Pavlovic's avatar Ilija.Pavlovic Committed by Commit bot

Fix inspector tests for shared libraries.

This CL prevents problems with library libicui18n.so during execution
inspector tests when component is defined as shared library.

TEST=inspector/*
BUG=

Review-Url: https://codereview.chromium.org/2863383003
Cr-Commit-Position: refs/heads/master@{#45176}
parent 1989713b
......@@ -28,6 +28,10 @@ v8_executable("inspector-test") {
"//build/win:default_exe_manifest",
]
if (v8_enable_i18n_support) {
deps += [ "//third_party/icu" ]
}
cflags = []
ldflags = []
}
......@@ -26,6 +26,14 @@
'task-runner.cc',
'task-runner.h',
],
'conditions': [
['v8_enable_i18n_support==1', {
'dependencies': [
'<(icu_gyp_path):icui18n',
'<(icu_gyp_path):icuuc',
],
}],
],
},
],
'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