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

Side by Side Diff: third_party/woff2/woff2.gyp

Issue 954163002: Add woff2 to src/third_party (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase as third_party/ots/src/woff2.cc has changed Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « third_party/woff2/src/woff2_enc.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'woff2_dec',
9 'type': 'static_library',
10 'include_dirs': [
11 'src',
12 '<(DEPTH)/third_party/brotli/dec',
13 ],
14 'dependencies': [
15 '<(DEPTH)/third_party/brotli/brotli.gyp:brotli',
16 ],
17 'sources': [
18 'src/buffer.h',
19 'src/round.h',
20 'src/store_bytes.h',
21 'src/table_tags.cc',
22 'src/table_tags.h',
23 'src/woff2_common.h',
24 'src/woff2_dec.cc',
25 'src/woff2_dec.h',
26 ],
27 # TODO(ksakamoto): http://crbug.com/167187
28 'msvs_disabled_warnings': [
29 4267,
30 ],
31 },
32 ],
33 }
OLDNEW
« no previous file with comments | « third_party/woff2/src/woff2_enc.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698