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

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

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: Created 9 years, 4 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'sfntly', 8 'target_name': 'sfntly',
9 'type': 'static_library', 9 'type': 'static_library',
10 'msvs_disable_precompiled_header': '1',
10 'sources': [ 11 'sources': [
11 'src/sfntly/cmap_table.cc', 12 'src/sfntly/cmap_table.cc',
12 'src/sfntly/cmap_table.h', 13 'src/sfntly/cmap_table.h',
13 'src/sfntly/data/byte_array.cc', 14 'src/sfntly/data/byte_array.cc',
14 'src/sfntly/data/byte_array.h', 15 'src/sfntly/data/byte_array.h',
15 'src/sfntly/data/font_data.cc', 16 'src/sfntly/data/font_data.cc',
16 'src/sfntly/data/font_data.h', 17 'src/sfntly/data/font_data.h',
17 'src/sfntly/data/font_input_stream.cc', 18 'src/sfntly/data/font_input_stream.cc',
18 'src/sfntly/data/font_input_stream.h', 19 'src/sfntly/data/font_input_stream.h',
19 'src/sfntly/data/font_output_stream.cc', 20 'src/sfntly/data/font_output_stream.cc',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 # This macro must be define to suppress the use of exception 81 # This macro must be define to suppress the use of exception
81 'defines': [ 82 'defines': [
82 'SFNTLY_NO_EXCEPTION', 83 'SFNTLY_NO_EXCEPTION',
83 ], 84 ],
84 'dependencies' : [ 85 'dependencies' : [
85 '../icu/icu.gyp:icuuc', 86 '../icu/icu.gyp:icuuc',
86 ], 87 ],
87 }, 88 },
88 ] 89 ]
89 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698