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

Side by Side Diff: gyp/sfntly.gyp

Issue 1510683002: Add sk_careful_memcpy to catch undefined behavior in memcpy. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: two more Created 5 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 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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'sfntly', 7 'target_name': 'sfntly',
8 'type': 'static_library', 8 'type': 'static_library',
9 'includes': [ 9 'includes': [
10 'common_conditions.gypi', 10 'common_conditions.gypi',
(...skipping 15 matching lines...) Expand all
26 ], 26 ],
27 'include_dirs': [ 27 'include_dirs': [
28 '<(sfntly_src_path)', 28 '<(sfntly_src_path)',
29 ], 29 ],
30 'defines': [ 30 'defines': [
31 'SFNTLY_NO_EXCEPTION', 31 'SFNTLY_NO_EXCEPTION',
32 ], 32 ],
33 'dependencies' : [ 33 'dependencies' : [
34 'icu.gyp:icuuc', 34 'icu.gyp:icuuc',
35 ], 35 ],
36 # Disable any sanitizers we might be using.
37 'ldflags!': [ '-fsanitize=<(skia_sanitizer)' ],
38 'cflags!': [ '-fsanitize=<(skia_sanitizer)' ],
36 'conditions': [ 39 'conditions': [
37 [ 'skia_os == "win"', 40 [ 'skia_os == "win"',
38 { 41 {
39 'defines': [ 'WIN32', ], 42 'defines': [ 'WIN32', ],
40 'msvs_settings': { 43 'msvs_settings': {
41 'VCCLCompilerTool': { 44 'VCCLCompilerTool': {
42 'AdditionalOptions': [ '/EHsc' ], 45 'AdditionalOptions': [ '/EHsc' ],
43 }, 46 },
44 }, 47 },
45 } 48 }
46 ], 49 ],
47 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', 50 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]',
48 { 'link_settings': { 'libraries': [ '-lpthread', ], }, }, 51 { 'link_settings': { 'libraries': [ '-lpthread', ], }, },
49 ], 52 ],
50 ], 53 ],
51 # TODO(jschuh): http://crbug.com/167187 54 # TODO(jschuh): http://crbug.com/167187
52 'msvs_disabled_warnings': [ 4267, 4244 ], 55 'msvs_disabled_warnings': [ 4267, 4244 ],
53 }, 56 },
54 ] 57 ]
55 } 58 }
OLDNEW
« no previous file with comments | « gyp/common_conditions.gypi ('k') | gyp/yasm.gyp » ('j') | include/core/SkTArray.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698