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

Side by Side Diff: gyp/qcms.gyp

Issue 1952063002: Create SkColorSpaceXform to handle color conversions (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase Created 4 years, 6 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 | « gyp/ports.gyp ('k') | include/codec/SkCodec.h » ('j') | no next file with comments »
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 # 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 './src', 22 '../third_party/qcms/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
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 }
OLDNEW
« no previous file with comments | « gyp/ports.gyp ('k') | include/codec/SkCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698