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

Unified Diff: third_party/qcms/qcms.gyp

Issue 10448110: Adds monitor ICC profile support for win and mac (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix reading length from small string Created 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/qcms/qcms.gyp
diff --git a/third_party/qcms/qcms.gyp b/third_party/qcms/qcms.gyp
index 01b9543e99a9e37d2a328ed8bae237067ab14ac9..896b4188dd5e2ed1ce118ea360035bf9369cafa4 100644
--- a/third_party/qcms/qcms.gyp
+++ b/third_party/qcms/qcms.gyp
@@ -8,6 +8,7 @@
'target_name': 'qcms',
'product_name': 'qcms',
'type': '<(library)',
+ 'toolsets': ['host', 'target'],
'sources': [
'src/chain.c',
'src/chain.h',
@@ -42,6 +43,41 @@
],
},
],
+ 'conditions': [
+ ['OS == "win"', {
Noel Gordon 2012/06/21 16:58:33 These gyp changes seems unrelated to the current p
tpayne 2012/07/02 19:22:32 Done.
+ 'targets': [
+ {
+ 'target_name': 'qcms_win64',
+ 'type': 'static_library',
+ # We can't use qcms target for win64 build since it is a 32-bit
+ # library.
+ 'include_dirs': [
+ './src',
+ ],
+ 'sources': [
+ 'src/chain.c',
+ 'src/chain.h',
+ 'src/iccread.c',
+ 'src/matrix.c',
+ 'src/matrix.h',
+ 'src/qcms.h',
+ 'src/qcmsint.h',
+ 'src/qcmstypes.h',
+ 'src/transform.c',
+ 'src/transform-sse1.c',
+ 'src/transform-sse2.c',
+ 'src/transform_util.c',
+ 'src/transform_util.h',
+ ],
+ 'configurations': {
+ 'Common_Base': {
+ 'msvs_target_platform': 'x64',
+ },
+ },
+ },
+ ],
+ }],
+ ],
}
# Local Variables:

Powered by Google App Engine
This is Rietveld 408576698