Commit 30444604 authored by jamesr@chromium.org's avatar jamesr@chromium.org

GN: Forward icu_config from public header config since we expose icu

public/web/WebSettings.h does:
and uses some types from ICU in its definition. Thus, anything that
depends on the blink public API and includes this header must have the
icu include dirs on their include path. This forwards icu_config from
the blink_headers target so dependents do not have to do this themselves
(unless they are linking against ICU directly)

R=brettw@chromium.org

Review URL: https://codereview.chromium.org/563963003

git-svn-id: svn://svn.chromium.org/blink/trunk@181876 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 61ba03ee
...@@ -57,6 +57,8 @@ config("blink_headers_config") { ...@@ -57,6 +57,8 @@ config("blink_headers_config") {
source_set("blink_headers") { source_set("blink_headers") {
direct_dependent_configs = [ direct_dependent_configs = [
":blink_headers_config", ":blink_headers_config",
# Blink exposes icu headers in the public API.
"//third_party/icu:icu_config",
# Blink exposes NPAPI headers in the public API. # Blink exposes NPAPI headers in the public API.
"//third_party/npapi:npapi_config", "//third_party/npapi:npapi_config",
] ]
......
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