| 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 'skia_warnings_as_errors': 0, | 7 'skia_warnings_as_errors': 0, |
| 8 'conditions':[ | 8 'conditions':[ |
| 9 ['skia_android_framework == 1', { | 9 ['skia_android_framework == 1', { |
| 10 'use_system_libwebp': 1, | 10 'use_system_libwebp': 1, |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 '../third_party/externals/libwebp/src/dsp/enc_sse2.c', | 80 '../third_party/externals/libwebp/src/dsp/enc_sse2.c', |
| 81 '../third_party/externals/libwebp/src/dsp/filters.c', | 81 '../third_party/externals/libwebp/src/dsp/filters.c', |
| 82 '../third_party/externals/libwebp/src/dsp/filters_mips_dsp_r2.c', | 82 '../third_party/externals/libwebp/src/dsp/filters_mips_dsp_r2.c', |
| 83 '../third_party/externals/libwebp/src/dsp/filters_sse2.c', | 83 '../third_party/externals/libwebp/src/dsp/filters_sse2.c', |
| 84 '../third_party/externals/libwebp/src/dsp/lossless.c', | 84 '../third_party/externals/libwebp/src/dsp/lossless.c', |
| 85 '../third_party/externals/libwebp/src/dsp/lossless_mips_dsp_r2.c', | 85 '../third_party/externals/libwebp/src/dsp/lossless_mips_dsp_r2.c', |
| 86 '../third_party/externals/libwebp/src/dsp/lossless_sse2.c', | 86 '../third_party/externals/libwebp/src/dsp/lossless_sse2.c', |
| 87 '../third_party/externals/libwebp/src/dsp/rescaler.c', | 87 '../third_party/externals/libwebp/src/dsp/rescaler.c', |
| 88 '../third_party/externals/libwebp/src/dsp/rescaler_mips32.c', | 88 '../third_party/externals/libwebp/src/dsp/rescaler_mips32.c', |
| 89 '../third_party/externals/libwebp/src/dsp/rescaler_mips_dsp_r2.c', | 89 '../third_party/externals/libwebp/src/dsp/rescaler_mips_dsp_r2.c', |
| 90 '../third_party/externals/libwebp/src/dsp/rescaler_sse2.c', |
| 90 '../third_party/externals/libwebp/src/dsp/upsampling.c', | 91 '../third_party/externals/libwebp/src/dsp/upsampling.c', |
| 91 '../third_party/externals/libwebp/src/dsp/upsampling_mips_dsp_r2.c', | 92 '../third_party/externals/libwebp/src/dsp/upsampling_mips_dsp_r2.c', |
| 92 '../third_party/externals/libwebp/src/dsp/upsampling_sse2.c', | 93 '../third_party/externals/libwebp/src/dsp/upsampling_sse2.c', |
| 93 '../third_party/externals/libwebp/src/dsp/yuv.c', | 94 '../third_party/externals/libwebp/src/dsp/yuv.c', |
| 94 '../third_party/externals/libwebp/src/dsp/yuv_mips32.c', | 95 '../third_party/externals/libwebp/src/dsp/yuv_mips32.c', |
| 95 '../third_party/externals/libwebp/src/dsp/yuv_mips_dsp_r2.c', | 96 '../third_party/externals/libwebp/src/dsp/yuv_mips_dsp_r2.c', |
| 96 '../third_party/externals/libwebp/src/dsp/yuv_sse2.c', | 97 '../third_party/externals/libwebp/src/dsp/yuv_sse2.c', |
| 97 ], | 98 ], |
| 98 'cflags': [ '-w' ], | 99 'cflags': [ '-w' ], |
| 99 'xcode_settings': { 'WARNING_CFLAGS': [ '-w' ] }, | 100 'xcode_settings': { 'WARNING_CFLAGS': [ '-w' ] }, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 117 ['arm_version >= 7', { | 118 ['arm_version >= 7', { |
| 118 'type': 'static_library', | 119 'type': 'static_library', |
| 119 'include_dirs': [ | 120 'include_dirs': [ |
| 120 '../third_party/externals/libwebp', | 121 '../third_party/externals/libwebp', |
| 121 ], | 122 ], |
| 122 'sources': [ | 123 'sources': [ |
| 123 '../third_party/externals/libwebp/src/dsp/dec_neon.c', | 124 '../third_party/externals/libwebp/src/dsp/dec_neon.c', |
| 124 '../third_party/externals/libwebp/src/dsp/enc_neon.c', | 125 '../third_party/externals/libwebp/src/dsp/enc_neon.c', |
| 125 '../third_party/externals/libwebp/src/dsp/lossless_neon.c', | 126 '../third_party/externals/libwebp/src/dsp/lossless_neon.c', |
| 126 '../third_party/externals/libwebp/src/dsp/lossless_enc_neon.c', | 127 '../third_party/externals/libwebp/src/dsp/lossless_enc_neon.c', |
| 128 '../third_party/externals/libwebp/src/dsp/rescaler_neon.c', |
| 127 '../third_party/externals/libwebp/src/dsp/upsampling_neon.c', | 129 '../third_party/externals/libwebp/src/dsp/upsampling_neon.c', |
| 128 ], | 130 ], |
| 129 # behavior similar dsp_neon.c.neon in an Android.mk | 131 # behavior similar dsp_neon.c.neon in an Android.mk |
| 130 'cflags!': [ | 132 'cflags!': [ |
| 131 '-mfpu=vfpv3-d16', | 133 '-mfpu=vfpv3-d16', |
| 132 ], | 134 ], |
| 133 'cflags': [ '-w' ], | 135 'cflags': [ '-w' ], |
| 134 },{ # !(arm_version >= 7) | 136 },{ # !(arm_version >= 7) |
| 135 'type': 'none', | 137 'type': 'none', |
| 136 }], | 138 }], |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 ], | 280 ], |
| 279 }, | 281 }, |
| 280 }, | 282 }, |
| 281 ], | 283 ], |
| 282 ], | 284 ], |
| 283 } | 285 } |
| 284 ], | 286 ], |
| 285 }], | 287 }], |
| 286 ], | 288 ], |
| 287 } | 289 } |
| OLD | NEW |