diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-07-17 13:57:45 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-07-19 13:44:40 +0000 |
commit | 6ec7b8da05d21a3878bd21c691b41e675d74bb1c (patch) | |
tree | b87f250bc19413750b9bb9cdbf2da20ef5014820 /chromium/third_party/brotli | |
parent | ec02ee4181c49b61fce1c8fb99292dbb8139cc90 (diff) | |
download | qtwebengine-chromium-6ec7b8da05d21a3878bd21c691b41e675d74bb1c.tar.gz |
BASELINE: Update Chromium to 60.0.3112.70
Change-Id: I9911c2280a014d4632f254857876a395d4baed2d
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/third_party/brotli')
-rw-r--r-- | chromium/third_party/brotli/BUILD.gn | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/chromium/third_party/brotli/BUILD.gn b/chromium/third_party/brotli/BUILD.gn index 43911338745..579003b9a2a 100644 --- a/chromium/third_party/brotli/BUILD.gn +++ b/chromium/third_party/brotli/BUILD.gn @@ -12,6 +12,15 @@ config("includes") { include_dirs = [ "include" ] } +source_set("headers") { + sources = [ + "include/brotli/decode.h", + "include/brotli/encode.h", + "include/brotli/port.h", + "include/brotli/types.h", + ] +} + static_library("common") { sources = [ "common/constants.h", @@ -20,6 +29,9 @@ static_library("common") { "common/version.h", ] public_configs = [ ":includes" ] + deps = [ + ":headers", + ] } static_library("dec") { @@ -38,6 +50,10 @@ static_library("dec") { ] public_configs = [ ":includes" ] + public_deps = [ + ":headers", + ] + deps = [ ":common", ] @@ -113,7 +129,8 @@ if (current_toolchain == host_toolchain) { deps = [ ":common", ":dec", - "//build/config/sanitizers:deps", + ":headers", + "//build/config:exe_and_shlib_deps", "//build/win:default_exe_manifest", ] |