| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # Copyright 2015 Google Inc. | 5 # Copyright 2015 Google Inc. |
| 6 # | 6 # |
| 7 # Use of this source code is governed by a BSD-style license that can be | 7 # Use of this source code is governed by a BSD-style license that can be |
| 8 # found in the LICENSE file. | 8 # found in the LICENSE file. |
| 9 | 9 |
| 10 # GYP file for codec project. | 10 # GYP file for codec project. |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'defines': [ | 128 'defines': [ |
| 129 'qDNGBigEndian=0', | 129 'qDNGBigEndian=0', |
| 130 ], | 130 ], |
| 131 }], | 131 }], |
| 132 ['skia_os == "ios" or skia_os == "mac"', { | 132 ['skia_os == "ios" or skia_os == "mac"', { |
| 133 'xcode_settings': { | 133 'xcode_settings': { |
| 134 'OTHER_CFLAGS': ['-fexceptions'], | 134 'OTHER_CFLAGS': ['-fexceptions'], |
| 135 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], | 135 'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'], |
| 136 }, | 136 }, |
| 137 }], | 137 }], |
| 138 ['skia_os == "chromeos"', { | |
| 139 'link_settings': { | |
| 140 'libraries': ['-lrt', ], | |
| 141 }, | |
| 142 }], | |
| 143 ], | 138 ], |
| 144 }, | 139 }, |
| 145 ], | 140 ], |
| 146 } | 141 } |
| OLD | NEW |