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': 'skia', | 8 'target_name': 'skia', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'variables': { | 10 'variables': { |
(...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1091 'SK_BUILD_FOR_ANDROID_NDK', | 1091 'SK_BUILD_FOR_ANDROID_NDK', |
1092 ], | 1092 ], |
1093 }], | 1093 }], |
1094 [ 'target_arch != "arm"', { | 1094 [ 'target_arch != "arm"', { |
1095 'sources': [ | 1095 'sources': [ |
1096 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp', | 1096 '../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp', |
1097 '../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp', | 1097 '../third_party/skia/src/opts/SkBlitRect_opts_SSE2.cpp', |
1098 '../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp', | 1098 '../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp', |
1099 '../third_party/skia/src/opts/SkUtils_opts_SSE2.cpp', | 1099 '../third_party/skia/src/opts/SkUtils_opts_SSE2.cpp', |
1100 ], | 1100 ], |
1101 'dependencies': [ | 1101 'conditions': [ |
1102 'skia_opts_ssse3', | 1102 # x86 Android doesn't support SSSE3 instructions. |
| 1103 [ 'OS != "android"', { |
| 1104 'dependencies': [ |
| 1105 'skia_opts_ssse3', |
| 1106 ], |
| 1107 }], |
1103 ], | 1108 ], |
1104 }, | 1109 }, |
1105 { # arm | 1110 { # arm |
1106 'conditions': [ | 1111 'conditions': [ |
1107 [ 'armv7 == 1', { | 1112 [ 'armv7 == 1', { |
1108 'defines': [ | 1113 'defines': [ |
1109 '__ARM_ARCH__=7', | 1114 '__ARM_ARCH__=7', |
1110 ], | 1115 ], |
1111 }], | 1116 }], |
1112 [ 'armv7 == 1 and arm_neon == 1', { | 1117 [ 'armv7 == 1 and arm_neon == 1', { |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1255 ], | 1260 ], |
1256 'include_dirs': [ | 1261 'include_dirs': [ |
1257 '..', | 1262 '..', |
1258 ], | 1263 ], |
1259 'sources': [ | 1264 'sources': [ |
1260 'ext/image_operations_bench.cc', | 1265 'ext/image_operations_bench.cc', |
1261 ], | 1266 ], |
1262 }, | 1267 }, |
1263 ], | 1268 ], |
1264 } | 1269 } |
OLD | NEW |