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

Side by Side Diff: gyp/piex.gyp

Issue 1678913002: msan: define BREAK_IF_DEBUGGING_AND_OUT_OF_RANGE in piex (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | 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. All Rights Reserved. 1 # Copyright 2016 Google Inc. All Rights Reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 17 matching lines...) Expand all
28 'target_name': 'piex', 28 'target_name': 'piex',
29 'type': 'static_library', 29 'type': 'static_library',
30 'sources': [ 30 'sources': [
31 '../third_party/externals/piex/src/binary_parse/cached_paged_byte_array.cc', 31 '../third_party/externals/piex/src/binary_parse/cached_paged_byte_array.cc',
32 '../third_party/externals/piex/src/binary_parse/range_checked_byte_ptr.cc', 32 '../third_party/externals/piex/src/binary_parse/range_checked_byte_ptr.cc',
33 '../third_party/externals/piex/src/image_type_recognition/image_type_recogni tion_lite.cc', 33 '../third_party/externals/piex/src/image_type_recognition/image_type_recogni tion_lite.cc',
34 '../third_party/externals/piex/src/piex.cc', 34 '../third_party/externals/piex/src/piex.cc',
35 '../third_party/externals/piex/src/tiff_directory/tiff_directory.cc', 35 '../third_party/externals/piex/src/tiff_directory/tiff_directory.cc',
36 '../third_party/externals/piex/src/tiff_parser.cc', 36 '../third_party/externals/piex/src/tiff_parser.cc',
37 ], 37 ],
38 'defines': [ 'BREAK_IF_DEBUGGING_AND_OUT_OF_RANGE' ],
msarett 2016/02/08 17:02:23 Do we want to define this all the time or only in
mtklein 2016/02/08 17:22:24 Doesn't matter. It only affects debug mode.
38 'include_dirs': [ '../third_party/externals/piex' ], 39 'include_dirs': [ '../third_party/externals/piex' ],
39 'direct_dependent_settings': { 40 'direct_dependent_settings': {
40 'include_dirs': [ '../third_party/externals/piex' ], 41 'include_dirs': [ '../third_party/externals/piex' ],
41 }, 42 },
42 'cflags': [ '-w' ], 43 'cflags': [ '-w' ],
43 'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '0' } }, 44 'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '0' } },
44 'xcode_settings': { 'WARNING_CFLAGS': ['-w'] }, 45 'xcode_settings': { 'WARNING_CFLAGS': ['-w'] },
45 }], 46 }],
46 } 47 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698