| OLD | NEW |
| 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 # This build file has been adapted for use in Skia. The contents of third_party
/qcms | 5 # This build file has been adapted for use in Skia. The contents of third_party
/qcms |
| 6 # are copied directly from Chromium. | 6 # are copied directly from Chromium. |
| 7 { | 7 { |
| 8 'variables': { | 8 'variables': { |
| 9 'skia_warnings_as_errors': 0, | 9 'skia_warnings_as_errors': 0, |
| 10 }, | 10 }, |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'qcms', | 13 'target_name': 'qcms', |
| 14 'type': 'static_library', | 14 'type': 'static_library', |
| 15 | 15 |
| 16 # Warning (sign-conversion) fixed upstream by large refactoring. Can be | 16 # Warning (sign-conversion) fixed upstream by large refactoring. Can be |
| 17 # removed on next roll. | 17 # removed on next roll. |
| 18 'msvs_disabled_warnings': [ 4018 ], | 18 'msvs_disabled_warnings': [ 4018 ], |
| 19 | 19 |
| 20 'direct_dependent_settings': { | 20 'direct_dependent_settings': { |
| 21 'include_dirs': [ | 21 'include_dirs': [ |
| 22 '../third_party/qcms/src/', | 22 './src', |
| 23 ], | 23 ], |
| 24 }, | 24 }, |
| 25 | 25 |
| 26 'sources': [ | 26 'sources': [ |
| 27 '../third_party/qcms/src/chain.c', | 27 '../third_party/qcms/src/chain.c', |
| 28 '../third_party/qcms/src/chain.h', | 28 '../third_party/qcms/src/chain.h', |
| 29 '../third_party/qcms/src/iccread.c', | 29 '../third_party/qcms/src/iccread.c', |
| 30 '../third_party/qcms/src/matrix.c', | 30 '../third_party/qcms/src/matrix.c', |
| 31 '../third_party/qcms/src/matrix.h', | 31 '../third_party/qcms/src/matrix.h', |
| 32 '../third_party/qcms/src/qcms.h', | 32 '../third_party/qcms/src/qcms.h', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 }, | 65 }, |
| 66 'msvs_settings': { | 66 'msvs_settings': { |
| 67 'VCCLCompilerTool': { | 67 'VCCLCompilerTool': { |
| 68 'WarningLevel': '0', | 68 'WarningLevel': '0', |
| 69 }, | 69 }, |
| 70 }, | 70 }, |
| 71 | 71 |
| 72 }, | 72 }, |
| 73 ], | 73 ], |
| 74 } | 74 } |
| OLD | NEW |