| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 config("ots_config") { | 5 config("ots_config") { |
| 6 include_dirs = [ "include" ] | 6 include_dirs = [ "include" ] |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("ots") { | 9 source_set("ots") { |
| 10 sources = [ | 10 sources = [ |
| 11 "include/opentype-sanitiser.h", |
| 11 "include/ots-memory-stream.h", | 12 "include/ots-memory-stream.h", |
| 12 "include/opentype-sanitiser.h", | |
| 13 "src/cff.cc", | 13 "src/cff.cc", |
| 14 "src/cff.h", | 14 "src/cff.h", |
| 15 "src/cff_type2_charstring.cc", | 15 "src/cff_type2_charstring.cc", |
| 16 "src/cff_type2_charstring.h", | 16 "src/cff_type2_charstring.h", |
| 17 "src/cmap.cc", | 17 "src/cmap.cc", |
| 18 "src/cmap.h", | 18 "src/cmap.h", |
| 19 "src/cvt.cc", | 19 "src/cvt.cc", |
| 20 "src/cvt.h", | 20 "src/cvt.h", |
| 21 "src/fpgm.cc", | 21 "src/fpgm.cc", |
| 22 "src/fpgm.h", | 22 "src/fpgm.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 39 "src/hmtx.cc", | 39 "src/hmtx.cc", |
| 40 "src/hmtx.h", | 40 "src/hmtx.h", |
| 41 "src/kern.cc", | 41 "src/kern.cc", |
| 42 "src/kern.h", | 42 "src/kern.h", |
| 43 "src/layout.cc", | 43 "src/layout.cc", |
| 44 "src/layout.h", | 44 "src/layout.h", |
| 45 "src/loca.cc", | 45 "src/loca.cc", |
| 46 "src/loca.h", | 46 "src/loca.h", |
| 47 "src/ltsh.cc", | 47 "src/ltsh.cc", |
| 48 "src/ltsh.h", | 48 "src/ltsh.h", |
| 49 "src/math.cc", |
| 50 "src/math_.h", |
| 49 "src/maxp.cc", | 51 "src/maxp.cc", |
| 50 "src/maxp.h", | 52 "src/maxp.h", |
| 51 "src/math.cc", | |
| 52 "src/math_.h", | |
| 53 "src/metrics.cc", | 53 "src/metrics.cc", |
| 54 "src/metrics.h", | 54 "src/metrics.h", |
| 55 "src/name.cc", | 55 "src/name.cc", |
| 56 "src/name.h", | 56 "src/name.h", |
| 57 "src/os2.cc", | 57 "src/os2.cc", |
| 58 "src/os2.h", | 58 "src/os2.h", |
| 59 "src/ots.cc", | 59 "src/ots.cc", |
| 60 "src/ots.h", | 60 "src/ots.h", |
| 61 "src/post.cc", | 61 "src/post.cc", |
| 62 "src/post.h", | 62 "src/post.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 81 "//third_party/zlib", | 81 "//third_party/zlib", |
| 82 ] | 82 ] |
| 83 | 83 |
| 84 if (is_win) { | 84 if (is_win) { |
| 85 cflags = [ | 85 cflags = [ |
| 86 "/wd4267", # Conversion from size_t to 'type'. | 86 "/wd4267", # Conversion from size_t to 'type'. |
| 87 "/wd4334", # 32-bit shift implicitly converted to 64-bits. | 87 "/wd4334", # 32-bit shift implicitly converted to 64-bits. |
| 88 ] | 88 ] |
| 89 } | 89 } |
| 90 } | 90 } |
| OLD | NEW |