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

Unified Diff: third_party/ots/BUILD.gn

Issue 797183002: Revert of Updating OTS repo from https://github.com/khaledhosny/ots.git (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/ots/.gitmodules ('k') | third_party/ots/INSTALL » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/ots/BUILD.gn
diff --git a/third_party/ots/BUILD.gn b/third_party/ots/BUILD.gn
deleted file mode 100644
index 6958b04d29d1509cb078d6da6f9a665bba273213..0000000000000000000000000000000000000000
--- a/third_party/ots/BUILD.gn
+++ /dev/null
@@ -1,91 +0,0 @@
-# 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.
-
-config("ots_config") {
- include_dirs = [ "include" ]
-}
-
-source_set("ots") {
- sources = [
- "include/ots-memory-stream.h",
- "include/opentype-sanitiser.h",
- "src/cff.cc",
- "src/cff.h",
- "src/cff_type2_charstring.cc",
- "src/cff_type2_charstring.h",
- "src/cmap.cc",
- "src/cmap.h",
- "src/cvt.cc",
- "src/cvt.h",
- "src/fpgm.cc",
- "src/fpgm.h",
- "src/gasp.cc",
- "src/gasp.h",
- "src/gdef.cc",
- "src/gdef.h",
- "src/glyf.cc",
- "src/glyf.h",
- "src/gpos.cc",
- "src/gpos.h",
- "src/gsub.cc",
- "src/gsub.h",
- "src/hdmx.cc",
- "src/hdmx.h",
- "src/head.cc",
- "src/head.h",
- "src/hhea.cc",
- "src/hhea.h",
- "src/hmtx.cc",
- "src/hmtx.h",
- "src/kern.cc",
- "src/kern.h",
- "src/layout.cc",
- "src/layout.h",
- "src/loca.cc",
- "src/loca.h",
- "src/ltsh.cc",
- "src/ltsh.h",
- "src/maxp.cc",
- "src/maxp.h",
- "src/math.cc",
- "src/math_.h",
- "src/metrics.cc",
- "src/metrics.h",
- "src/name.cc",
- "src/name.h",
- "src/os2.cc",
- "src/os2.h",
- "src/ots.cc",
- "src/ots.h",
- "src/post.cc",
- "src/post.h",
- "src/prep.cc",
- "src/prep.h",
- "src/vdmx.cc",
- "src/vdmx.h",
- "src/vhea.cc",
- "src/vhea.h",
- "src/vmtx.cc",
- "src/vmtx.h",
- "src/vorg.cc",
- "src/vorg.h",
- "src/woff2.cc",
- "src/woff2.h",
- ]
-
- direct_dependent_configs = [ ":ots_config" ]
-
- deps = [
- "//third_party/brotli",
- "//third_party/zlib",
- ]
-
- if (is_win) {
- cflags = [
- "/wd4267", # Conversion from size_t to 'type'.
- "/wd4334", # 32-bit shift implicitly converted to 64-bits.
- "/wd4800", # 'type' : forcing value to bool 'true' or 'false'.
- ]
- }
-}
« no previous file with comments | « third_party/ots/.gitmodules ('k') | third_party/ots/INSTALL » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698