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

Unified Diff: third_party/brotli/BUILD.gn

Issue 305013005: Add woff2_dec target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix README.chromium 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 | « DEPS ('k') | third_party/brotli/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/brotli/BUILD.gn
diff --git a/third_party/brotli/BUILD.gn b/third_party/brotli/BUILD.gn
index 5696b1d274b0d843cf48a8eed0ad4459771093de..73fb5b9212b10f931ad23a3e55e43826c7f6ebee 100644
--- a/third_party/brotli/BUILD.gn
+++ b/third_party/brotli/BUILD.gn
@@ -26,3 +26,26 @@ source_set("brotli") {
include_dirs = [ "src/brotli/dec" ]
}
+
+source_set("woff2_dec") {
+ sources = [
+ "src/woff2/buffer.h",
+ "src/woff2/round.h",
+ "src/woff2/store_bytes.h",
+ "src/woff2/table_tags.cc",
+ "src/woff2/table_tags.h",
+ "src/woff2/woff2_common.h",
+ "src/woff2/woff2_dec.cc",
+ "src/woff2/woff2_dec.h",
+ ]
+
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+
+ deps = [ ":brotli" ]
+
+ include_dirs = [
+ "src/brotli/dec",
+ "src/woff2",
+ ]
+}
« no previous file with comments | « DEPS ('k') | third_party/brotli/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698