OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 6 'variables': { |
7 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', | 7 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', |
8 'conditions': [ | 8 'conditions': [ |
9 [ 'chromeos==1 or OS=="freebsd" or OS=="openbsd"', { | 9 [ 'chromeos==1 or OS=="freebsd" or OS=="openbsd"', { |
10 # Link to system .so since we already use it due to GTK. | 10 # Link to system .so since we already use it due to GTK. |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 'jquant1.c', | 90 'jquant1.c', |
91 'jquant2.c', | 91 'jquant2.c', |
92 'jutils.c', | 92 'jutils.c', |
93 'jversion.h', | 93 'jversion.h', |
94 ], | 94 ], |
95 'direct_dependent_settings': { | 95 'direct_dependent_settings': { |
96 'include_dirs': [ | 96 'include_dirs': [ |
97 '.', | 97 '.', |
98 ], | 98 ], |
99 }, | 99 }, |
| 100 'msvs_disabled_warnings': [4018, 4101], |
100 'conditions': [ | 101 'conditions': [ |
101 [ 'OS!="win"', {'product_name': 'jpeg_turbo'}], | 102 [ 'OS!="win"', {'product_name': 'jpeg_turbo'}], |
102 # Add target-specific source files. | 103 # Add target-specific source files. |
103 [ 'target_arch=="ia32"', { | 104 [ 'target_arch=="ia32"', { |
104 'sources': [ | 105 'sources': [ |
105 'simd/jsimd_i386.c', | 106 'simd/jsimd_i386.c', |
106 'simd/jsimdcpu.asm', | 107 'simd/jsimdcpu.asm', |
107 'simd/jccolmmx.asm', | 108 'simd/jccolmmx.asm', |
108 'simd/jdcolmmx.asm', | 109 'simd/jdcolmmx.asm', |
109 'simd/jcsammmx.asm', | 110 'simd/jcsammmx.asm', |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 ], | 265 ], |
265 }], | 266 }], |
266 ], | 267 ], |
267 } | 268 } |
268 | 269 |
269 # Local Variables: | 270 # Local Variables: |
270 # tab-width:2 | 271 # tab-width:2 |
271 # indent-tabs-mode:nil | 272 # indent-tabs-mode:nil |
272 # End: | 273 # End: |
273 # vim: set expandtab tabstop=2 shiftwidth=2: | 274 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |