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 { | 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 'msvs_disabled_warnings': [ 4018 ], |
29 'conditions': [ | 30 'conditions': [ |
30 [ 'target_arch != "arm" and OS in ["linux", "freebsd", "openbsd", "solar
is"]', { | 31 [ 'target_arch != "arm" and OS in ["linux", "freebsd", "openbsd", "solar
is"]', { |
31 'cflags': [ | 32 'cflags': [ |
32 '-msse', | 33 '-msse', |
33 '-msse2', | 34 '-msse2', |
34 ], | 35 ], |
35 }], | 36 }], |
36 [ 'target_arch != "arm"', { | 37 [ 'target_arch != "arm"', { |
37 'sources': [ | 38 'sources': [ |
38 'src/transform-sse1.c', | 39 'src/transform-sse1.c', |
39 'src/transform-sse2.c', | 40 'src/transform-sse2.c', |
40 ], | 41 ], |
41 }], | 42 }], |
42 ], | 43 ], |
43 }, | 44 }, |
44 ], | 45 ], |
45 } | 46 } |
46 | 47 |
47 # Local Variables: | 48 # Local Variables: |
48 # tab-width:2 | 49 # tab-width:2 |
49 # indent-tabs-mode:nil | 50 # indent-tabs-mode:nil |
50 # End: | 51 # End: |
51 # vim: set expandtab tabstop=2 shiftwidth=2: | 52 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |