Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: skia/skia.gyp

Issue 8262005: Add ARM (asm) memset routines to skia build (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'sources': [ 10 'sources': [
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 }], 958 }],
959 ], 959 ],
960 # The assembly uses the frame pointer register (r7 in Thumb/r11 in 960 # The assembly uses the frame pointer register (r7 in Thumb/r11 in
961 # ARM), the compiler doesn't like that. 961 # ARM), the compiler doesn't like that.
962 'cflags': [ 962 'cflags': [
963 '-fomit-frame-pointer', 963 '-fomit-frame-pointer',
964 ], 964 ],
965 'sources': [ 965 'sources': [
966 '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp', 966 '../third_party/skia/src/opts/SkBitmapProcState_opts_arm.cpp',
967 '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp', 967 '../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp',
968 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 968 '../third_party/skia/src/opts/opts_check_arm.cpp',
969 ], 969 ],
970 }], 970 }],
971 [ 'armv7 == 1 and arm_neon == 0', {
972 'sources': [
973 '../third_party/skia/src/opts/memset.arm.S',
974 ],
975 }],
976 [ 'armv7 == 1 and arm_neon == 1', {
977 'sources': [
978 '../third_party/skia/src/opts/memset16_neon.S',
979 '../third_party/skia/src/opts/memset32_neon.S',
980 ],
981 }],
971 ], 982 ],
972 }, 983 },
973 { 984 {
974 'target_name': 'skia_libtess', 985 'target_name': 'skia_libtess',
975 'type': 'static_library', 986 'type': 'static_library',
976 'include_dirs': [ 987 'include_dirs': [
977 '../third_party/skia/third_party/glu', 988 '../third_party/skia/third_party/glu',
978 ], 989 ],
979 'sources': [ 990 'sources': [
980 '../third_party/skia/third_party/glu/sk_glu.h', 991 '../third_party/skia/third_party/glu/sk_glu.h',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1018 ], 1029 ],
1019 'include_dirs': [ 1030 'include_dirs': [
1020 '..', 1031 '..',
1021 ], 1032 ],
1022 'sources': [ 1033 'sources': [
1023 'ext/image_operations_bench.cc', 1034 'ext/image_operations_bench.cc',
1024 ], 1035 ],
1025 }, 1036 },
1026 ], 1037 ],
1027 } 1038 }
OLDNEW
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698