Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Unified Diff: third_party/libwebp/BUILD.gn

Issue 288033016: GN build: GPU work, Windows compile, "check" errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src
Patch Set: missing files Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_format.h ('k') | ui/base/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libwebp/BUILD.gn
diff --git a/third_party/libwebp/BUILD.gn b/third_party/libwebp/BUILD.gn
index cf7dccda55fa5e9ce8111360b3e11e81e1d9fc28..48e548ed698d3533685b7e8e8e50a144271f9e6b 100644
--- a/third_party/libwebp/BUILD.gn
+++ b/third_party/libwebp/BUILD.gn
@@ -20,6 +20,10 @@ source_set("libwebp_dec") {
"dec/vp8l.c",
"dec/webp.c",
]
+
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+
deps = [
":libwebp_dsp",
# TODO(GYP):
@@ -53,6 +57,9 @@ source_set("libwebp_dsp") {
"dsp/upsampling_sse2.c",
"dsp/yuv.c",
]
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+
all_dependent_configs = [
":libwebp_config"
]
@@ -120,6 +127,9 @@ source_set("libwebp_enc") {
"enc/vp8l.c",
"enc/webpenc.c",
]
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+
all_dependent_configs = [
":libwebp_config"
]
@@ -141,6 +151,9 @@ source_set("libwebp_utils") {
"utils/thread.c",
"utils/utils.c",
]
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+
all_dependent_configs = [
":libwebp_config"
]
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_format.h ('k') | ui/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698