Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } |
| OLD | NEW |