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

Side by Side Diff: gyp/libjpeg-turbo.gyp

Issue 1503423003: ubsan shift fixes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
« no previous file with comments | « no previous file | include/core/SkFixed.h » ('j') | include/core/SkFixed.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'xcode_settings': { 6 'xcode_settings': {
7 'SYMROOT': '<(DEPTH)/xcodebuild', 7 'SYMROOT': '<(DEPTH)/xcodebuild',
8 }, 8 },
9 'variables': { 9 'variables': {
10 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/externals/li bjpeg-turbo', 10 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/externals/li bjpeg-turbo',
(...skipping 24 matching lines...) Expand all
35 '../third_party/externals/libjpeg-turbo/', 35 '../third_party/externals/libjpeg-turbo/',
36 ], 36 ],
37 'defines': [ 37 'defines': [
38 'WITH_SIMD', 38 'WITH_SIMD',
39 'MOTION_JPEG_SUPPORTED', 39 'MOTION_JPEG_SUPPORTED',
40 'NO_GETENV', 40 'NO_GETENV',
41 ], 41 ],
42 'cflags': [ 42 'cflags': [
43 '-w', # supresses warnings 43 '-w', # supresses warnings
44 ], 44 ],
45 'ldflags!': [ '-fsanitize=<(skia_sanitizer)' ],
46 'cflags!': [ '-fsanitize=<(skia_sanitizer)' ],
45 'msvs_settings': { 47 'msvs_settings': {
46 'VCCLCompilerTool': { 48 'VCCLCompilerTool': {
47 'WarningLevel': '0', 49 'WarningLevel': '0',
48 }, 50 },
49 }, 51 },
50 'xcode_settings': { 52 'xcode_settings': {
51 'WARNING_CFLAGS': [ 53 'WARNING_CFLAGS': [
52 '-w', 54 '-w',
53 ], 55 ],
54 }, 56 },
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 ], 342 ],
341 'process_outputs_as_sources': 1, 343 'process_outputs_as_sources': 1,
342 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)', 344 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)',
343 }], 345 }],
344 ] 346 ]
345 }, 347 },
346 ], 348 ],
347 }, 349 },
348 ], 350 ],
349 } 351 }
OLDNEW
« no previous file with comments | « no previous file | include/core/SkFixed.h » ('j') | include/core/SkFixed.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698