OLD | NEW |
1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 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 | 5 |
6 declare_args() { | 6 declare_args() { |
7 } | 7 } |
8 | 8 |
9 import("../third_party.gni") | 9 import("../third_party.gni") |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 "pngrio.c", | 24 "pngrio.c", |
25 "pngrtran.c", | 25 "pngrtran.c", |
26 "pngrutil.c", | 26 "pngrutil.c", |
27 "pngset.c", | 27 "pngset.c", |
28 "pngtrans.c", | 28 "pngtrans.c", |
29 "pngwio.c", | 29 "pngwio.c", |
30 "pngwrite.c", | 30 "pngwrite.c", |
31 "pngwtran.c", | 31 "pngwtran.c", |
32 "pngwutil.c", | 32 "pngwutil.c", |
33 ] | 33 ] |
| 34 |
| 35 if (current_cpu == "arm" || current_cpu == "arm64") { |
| 36 sources += [ |
| 37 "arm/arm_init.c", |
| 38 "arm/filter_neon_intrinsics.c", |
| 39 ] |
| 40 } |
34 } | 41 } |
OLD | NEW |