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

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

Issue 732423002: Update from chromium https://crrev.com/304586 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 | « testing/scripts/common.py ('k') | third_party/zlib/BUILD.gn » ('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': 'static_library', 10 'type': 'static_library',
(...skipping 29 matching lines...) Expand all
40 'src/transform-sse2.c', 40 'src/transform-sse2.c',
41 ], 41 ],
42 }], 42 }],
43 # QCMS assumes this target isn't compiled since MSVC x64 doesn't support 43 # QCMS assumes this target isn't compiled since MSVC x64 doesn't support
44 # the MMX intrinsics present in the SSE1 code. 44 # the MMX intrinsics present in the SSE1 code.
45 ['OS=="win" and target_arch=="x64"', { 45 ['OS=="win" and target_arch=="x64"', {
46 'sources!': [ 46 'sources!': [
47 'src/transform-sse1.c', 47 'src/transform-sse1.c',
48 ], 48 ],
49 }], 49 }],
50 ['OS == "win" and (MSVS_VERSION == "2013" or MSVS_VERSION == "2013e")', { 50 ['OS == "win"', {
51 'msvs_disabled_warnings': [ 51 'msvs_disabled_warnings': [
52 4056, # overflow in floating-point constant arithmetic (INFINITY) 52 4056, # overflow in floating-point constant arithmetic (INFINITY)
53 4756, # overflow in constant arithmetic (INFINITY) 53 4756, # overflow in constant arithmetic (INFINITY)
54 ], 54 ],
55 }], 55 }],
56 ], 56 ],
57 }, 57 },
58 ], 58 ],
59 } 59 }
60 60
61 # Local Variables: 61 # Local Variables:
62 # tab-width:2 62 # tab-width:2
63 # indent-tabs-mode:nil 63 # indent-tabs-mode:nil
64 # End: 64 # End:
65 # vim: set expandtab tabstop=2 shiftwidth=2: 65 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « testing/scripts/common.py ('k') | third_party/zlib/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698