| 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': 'static_library', | 10 'type': 'static_library', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 }], | 41 }], |
| 42 ['OS == "win"', { | 42 ['OS == "win"', { |
| 43 'msvs_disabled_warnings': [ | 43 'msvs_disabled_warnings': [ |
| 44 4056, # overflow in floating-point constant arithmetic (INFINITY) | 44 4056, # overflow in floating-point constant arithmetic (INFINITY) |
| 45 4756, # overflow in constant arithmetic (INFINITY) | 45 4756, # overflow in constant arithmetic (INFINITY) |
| 46 ], | 46 ], |
| 47 }], | 47 }], |
| 48 ], | 48 ], |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 'target_name': 'qcms_test', | 51 'target_name': 'qcms_tests', |
| 52 'product_name': 'qcms_test', | 52 'product_name': 'qcms_tests', |
| 53 'type': 'executable', | 53 'type': 'executable', |
| 54 'conditions': [ | 54 'conditions': [ |
| 55 ['target_arch=="ia32" or target_arch=="x64"', { | 55 ['target_arch=="ia32" or target_arch=="x64"', { |
| 56 'defines': [ | 56 'defines': [ |
| 57 'SSE2_ENABLE', | 57 'SSE2_ENABLE', |
| 58 ], | 58 ], |
| 59 'sources': [ | 59 'sources': [ |
| 60 'src/tests/qcms_test_tetra_clut_rgba.c', | 60 'src/tests/qcms_test_tetra_clut_rgba.c', |
| 61 'src/tests/qcms_test_main.c', |
| 62 'src/tests/qcms_test_munsell.c', |
| 61 ], | 63 ], |
| 62 'dependencies': [ | 64 'dependencies': [ |
| 63 'qcms', | 65 'qcms', |
| 64 ], | 66 ], |
| 65 'conditions': [ | 67 'conditions': [ |
| 66 ['OS != "win"', { | 68 ['OS != "win"', { |
| 67 'libraries': [ | 69 'libraries': [ |
| 68 '-lm', | 70 '-lm', |
| 69 ], | 71 ], |
| 70 }], | 72 }], |
| 71 ], | 73 ], |
| 72 }], | 74 }], |
| 73 ], | 75 ], |
| 74 }, | 76 }, |
| 75 ], | 77 ], |
| 76 } | 78 } |
| 77 | 79 |
| 78 # Local Variables: | 80 # Local Variables: |
| 79 # tab-width:2 | 81 # tab-width:2 |
| 80 # indent-tabs-mode:nil | 82 # indent-tabs-mode:nil |
| 81 # End: | 83 # End: |
| 82 # vim: set expandtab tabstop=2 shiftwidth=2: | 84 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |