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

Side by Side Diff: third_party/sfntly/BUILD.gn

Issue 2347443002: Compile the skia library for windows using gn. (Closed)
Patch Set: Created 4 years, 3 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
« gn/BUILD.gn ('K') | « gn/BUILDCONFIG.gn ('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
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 declare_args() { 6 declare_args() {
7 } 7 }
8 8
9 import("../third_party.gni") 9 import("../third_party.gni")
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "../externals/sfntly/cpp/src/sfntly/table/subtable.cc", 63 "../externals/sfntly/cpp/src/sfntly/table/subtable.cc",
64 "../externals/sfntly/cpp/src/sfntly/table/table.cc", 64 "../externals/sfntly/cpp/src/sfntly/table/table.cc",
65 "../externals/sfntly/cpp/src/sfntly/table/table_based_table_builder.cc", 65 "../externals/sfntly/cpp/src/sfntly/table/table_based_table_builder.cc",
66 "../externals/sfntly/cpp/src/sfntly/table/truetype/glyph_table.cc", 66 "../externals/sfntly/cpp/src/sfntly/table/truetype/glyph_table.cc",
67 "../externals/sfntly/cpp/src/sfntly/table/truetype/loca_table.cc", 67 "../externals/sfntly/cpp/src/sfntly/table/truetype/loca_table.cc",
68 "../externals/sfntly/cpp/src/sfntly/tag.cc", 68 "../externals/sfntly/cpp/src/sfntly/tag.cc",
69 "../externals/sfntly/cpp/src/sfntly/tools/subsetter/glyph_table_subsetter.cc ", 69 "../externals/sfntly/cpp/src/sfntly/tools/subsetter/glyph_table_subsetter.cc ",
70 "../externals/sfntly/cpp/src/sfntly/tools/subsetter/subsetter.cc", 70 "../externals/sfntly/cpp/src/sfntly/tools/subsetter/subsetter.cc",
71 "../externals/sfntly/cpp/src/sfntly/tools/subsetter/table_subsetter_impl.cc" , 71 "../externals/sfntly/cpp/src/sfntly/tools/subsetter/table_subsetter_impl.cc" ,
72 ] 72 ]
73
74 if (is_win) {
75 defines += [ "WIN32", "NOMINMAX" ]
mtklein 2016/09/14 21:25:14 Probably do not need NOMINMAX again. Better check
herb_g 2016/09/16 19:54:15 Done.
76 #cflags += [
77 # "/wd4267",
78 # "/wd4244",
mtklein 2016/09/14 21:25:14 Can you make the template in third_party/third_par
herb_g 2016/09/16 19:54:15 Done.
79 #]
80 cflags_cc = [ "/EHsc", ]
mtklein 2016/09/14 21:25:14 Let's confirm SFNTLY_NO_EXCEPTION doesn't work eno
herb_g 2016/09/16 19:54:15 Done.
81 }
73 } 82 }
OLDNEW
« gn/BUILD.gn ('K') | « gn/BUILDCONFIG.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698