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

Unified Diff: third_party/brotli/BUILD.gn

Issue 276263003: Convert some third_party deps to GN (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comment, android build 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 | « BUILD.gn ('k') | third_party/iccjpeg/BUILD.gn » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..5696b1d274b0d843cf48a8eed0ad4459771093de
--- /dev/null
+++ b/third_party/brotli/BUILD.gn
@@ -0,0 +1,28 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+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",
+ ]
+
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [ "//build/config/compiler:no_chromium_code" ]
+
+ include_dirs = [ "src/brotli/dec" ]
+}
« no previous file with comments | « BUILD.gn ('k') | third_party/iccjpeg/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698