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

Unified Diff: third_party/brotli/brotli.gyp

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 | « third_party/brotli/README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/brotli/brotli.gyp
diff --git a/third_party/brotli/brotli.gyp b/third_party/brotli/brotli.gyp
index 8e54f0345adb2ae2527ad62222ec3f99c707ba05..e074658194767e721ae1e422b505ef434422d159 100644
--- a/third_party/brotli/brotli.gyp
+++ b/third_party/brotli/brotli.gyp
@@ -1,6 +1,7 @@
# Copyright 2013 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.
+# TODO(bashi): Rename this directory to font-compression-reference
{
'targets': [
@@ -28,5 +29,26 @@
'src/brotli/dec/types.h',
],
},
+ {
+ 'target_name': 'woff2_dec',
+ 'type': 'static_library',
+ 'include_dirs': [
+ 'src/brotli/dec',
+ 'src/woff2',
+ ],
+ 'dependencies': [
+ 'brotli',
+ ],
+ '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',
+ ],
+ },
],
}
« no previous file with comments | « third_party/brotli/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698