| 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 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'disable_qcms%': 0, |
| 8 # Do not build QCMS on Android or iOS. (See http://crbug.com/577155) | |
| 9 ['OS == "android" or OS == "ios"', { | |
| 10 'disable_qcms%': 1, | |
| 11 }, { | |
| 12 'disable_qcms%': 0, | |
| 13 }], | |
| 14 ], | |
| 15 }, | 8 }, |
| 16 'targets': [ | 9 'targets': [ |
| 17 { | 10 { |
| 18 'target_name': 'qcms', | 11 'target_name': 'qcms', |
| 19 'product_name': 'qcms', | 12 'product_name': 'qcms', |
| 20 'type': 'static_library', | 13 'type': 'static_library', |
| 21 | 14 |
| 22 # Warning (sign-conversion) fixed upstream by large refactoring. Can be | 15 # Warning (sign-conversion) fixed upstream by large refactoring. Can be |
| 23 # removed on next roll. | 16 # removed on next roll. |
| 24 'msvs_disabled_warnings': [ 4018 ], | 17 'msvs_disabled_warnings': [ 4018 ], |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 ], | 97 ], |
| 105 }], | 98 }], |
| 106 ], | 99 ], |
| 107 } | 100 } |
| 108 | 101 |
| 109 # Local Variables: | 102 # Local Variables: |
| 110 # tab-width:2 | 103 # tab-width:2 |
| 111 # indent-tabs-mode:nil | 104 # indent-tabs-mode:nil |
| 112 # End: | 105 # End: |
| 113 # vim: set expandtab tabstop=2 shiftwidth=2: | 106 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |