summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DEPS4
-rw-r--r--third_party/brotli/OWNERS2
-rw-r--r--third_party/brotli/README.chromium15
-rw-r--r--third_party/brotli/brotli.gyp28
4 files changed, 0 insertions, 49 deletions
diff --git a/DEPS b/DEPS
index 7ca06e1..634b349 100644
--- a/DEPS
+++ b/DEPS
@@ -151,10 +151,6 @@ deps = {
"src/third_party/ots":
(Var("googlecode_url") % "ots") + "/trunk@107",
- "src/third_party/brotli/src":
- Var("chromium_git") +
- "/external/font-compression-reference.git@79e99afe468407e9ff9f0820df7190cb069eabeb",
-
"src/tools/page_cycler/acid3":
"/trunk/deps/page_cycler/acid3@171600",
diff --git a/third_party/brotli/OWNERS b/third_party/brotli/OWNERS
deleted file mode 100644
index 458697e..0000000
--- a/third_party/brotli/OWNERS
+++ /dev/null
@@ -1,2 +0,0 @@
-ksakamoto@chromium.org
-bashi@chromium.org
diff --git a/third_party/brotli/README.chromium b/third_party/brotli/README.chromium
deleted file mode 100644
index c17c9c3..0000000
--- a/third_party/brotli/README.chromium
+++ /dev/null
@@ -1,15 +0,0 @@
-Name: Brotli
-URL: https://code.google.com/p/font-compression-reference/
-Version: 0
-License: Apache 2.0
-License File: src/brotli/LICENSE
-Security Critical: yes
-
-Description:
-Brotli is a generic byte-level compression algorithm that is proposed to
-be used at the byte-compression level in WOFF 2.0 font file format.
-
-This library is used by src/third_party/ots, to decode WOFF 2.0 fonts.
-
-The font-compression-reference repository includes WOFF 2.0 encoder and
-tools, but Chrome/Chromium need only files under brotli/dec.
diff --git a/third_party/brotli/brotli.gyp b/third_party/brotli/brotli.gyp
deleted file mode 100644
index 44b7674..0000000
--- a/third_party/brotli/brotli.gyp
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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.
-
-{
- 'targets': [
- {
- 'target_name': 'brotli',
- 'type': 'static_library',
- 'include_dirs': [
- 'src/brotli/dec',
- ],
- '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/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/types.h',
- ],
- },
- ],
-}