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

Unified Diff: third_party/brotli/BUILD.gn

Issue 960873002: Update from https://crrev.com/318214 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « third_party/brotli/.gitignore ('k') | third_party/brotli/LICENSE » ('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 fa856ee5026f0d24e7067c99d0ead6886a07cbc3..11f2871e9d430765fe7ff05f8f884d55d302fd60 100644
--- a/third_party/brotli/BUILD.gn
+++ b/third_party/brotli/BUILD.gn
@@ -4,50 +4,25 @@
source_set("brotli") {
sources = [
- "src/brotli/dec/bit_reader.c",
- "src/brotli/dec/bit_reader.h",
- "src/brotli/dec/context.h",
- "src/brotli/dec/decode.c",
- "src/brotli/dec/decode.h",
- "src/brotli/dec/dictionary.h",
- "src/brotli/dec/huffman.c",
- "src/brotli/dec/huffman.h",
- "src/brotli/dec/prefix.h",
- "src/brotli/dec/safe_malloc.c",
- "src/brotli/dec/safe_malloc.h",
- "src/brotli/dec/streams.c",
- "src/brotli/dec/streams.h",
- "src/brotli/dec/transform.h",
- "src/brotli/dec/types.h",
+ "dec/bit_reader.c",
+ "dec/bit_reader.h",
+ "dec/context.h",
+ "dec/decode.c",
+ "dec/decode.h",
+ "dec/dictionary.h",
+ "dec/huffman.c",
+ "dec/huffman.h",
+ "dec/prefix.h",
+ "dec/safe_malloc.c",
+ "dec/safe_malloc.h",
+ "dec/streams.c",
+ "dec/streams.h",
+ "dec/transform.h",
+ "dec/types.h",
]
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
- 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",
- ]
+ include_dirs = [ "dec" ]
}
« no previous file with comments | « third_party/brotli/.gitignore ('k') | third_party/brotli/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698