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

Side by Side Diff: third_party/qcms/qcms.gyp

Issue 10827429: Turn on warnings as errors for (most) third_party code on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: lzma_sdk Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « third_party/mesa/mesa.gyp ('k') | third_party/yasm/yasm.gyp » ('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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'qcms', 8 'target_name': 'qcms',
9 'product_name': 'qcms', 9 'product_name': 'qcms',
10 'type': '<(library)', 10 'type': '<(library)',
11 'sources': [ 11 'sources': [
12 'src/chain.c', 12 'src/chain.c',
13 'src/chain.h', 13 'src/chain.h',
14 'src/iccread.c', 14 'src/iccread.c',
15 'src/matrix.c', 15 'src/matrix.c',
16 'src/matrix.h', 16 'src/matrix.h',
17 'src/qcms.h', 17 'src/qcms.h',
18 'src/qcmsint.h', 18 'src/qcmsint.h',
19 'src/qcmstypes.h', 19 'src/qcmstypes.h',
20 'src/transform.c', 20 'src/transform.c',
21 'src/transform_util.c', 21 'src/transform_util.c',
22 'src/transform_util.h', 22 'src/transform_util.h',
23 ], 23 ],
24 'direct_dependent_settings': { 24 'direct_dependent_settings': {
25 'include_dirs': [ 25 'include_dirs': [
26 './src', 26 './src',
27 ], 27 ],
28 }, 28 },
29 # Warning (sign-conversion) fixed upstream by large refactoring. Can be
30 # removed on next roll.
31 'msvs_disabled_warnings': [ 4018 ],
29 'conditions': [ 32 'conditions': [
30 [ 'target_arch != "arm" and OS in ["linux", "freebsd", "openbsd", "solar is"]', { 33 [ 'target_arch != "arm" and OS in ["linux", "freebsd", "openbsd", "solar is"]', {
31 'cflags': [ 34 'cflags': [
32 '-msse', 35 '-msse',
33 '-msse2', 36 '-msse2',
34 ], 37 ],
35 }], 38 }],
36 [ 'target_arch != "arm"', { 39 [ 'target_arch != "arm"', {
37 'sources': [ 40 'sources': [
38 'src/transform-sse1.c', 41 'src/transform-sse1.c',
39 'src/transform-sse2.c', 42 'src/transform-sse2.c',
40 ], 43 ],
41 }], 44 }],
42 ], 45 ],
43 }, 46 },
44 ], 47 ],
45 } 48 }
46 49
47 # Local Variables: 50 # Local Variables:
48 # tab-width:2 51 # tab-width:2
49 # indent-tabs-mode:nil 52 # indent-tabs-mode:nil
50 # End: 53 # End:
51 # vim: set expandtab tabstop=2 shiftwidth=2: 54 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « third_party/mesa/mesa.gyp ('k') | third_party/yasm/yasm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698