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

Side by Side Diff: BUILD.gn

Issue 2527983002: Add MSA optimized ARGB scaling functions (Closed)
Patch Set: Changes as per review comments Created 4 years 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
« no previous file with comments | « Android.mk ('k') | CMakeLists.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The LibYuv Project Authors. All rights reserved. 1 # Copyright 2014 The LibYuv Project Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("libyuv.gni") 9 import("libyuv.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 cflags = [ "-mfpu=neon" ] 157 cflags = [ "-mfpu=neon" ]
158 } 158 }
159 } 159 }
160 } 160 }
161 161
162 if (libyuv_use_msa) { 162 if (libyuv_use_msa) {
163 static_library("libyuv_msa") { 163 static_library("libyuv_msa") {
164 sources = [ 164 sources = [
165 # MSA Source Files 165 # MSA Source Files
166 "source/row_msa.cc", 166 "source/row_msa.cc",
167 "source/scale_msa.cc",
167 ] 168 ]
168 169
169 public_configs = [ ":libyuv_config" ] 170 public_configs = [ ":libyuv_config" ]
170 } 171 }
171 } 172 }
172 173
173 if (libyuv_include_tests) { 174 if (libyuv_include_tests) {
174 config("libyuv_unittest_warnings_config") { 175 config("libyuv_unittest_warnings_config") {
175 if (!is_win) { 176 if (!is_win) {
176 cflags = [ 177 cflags = [
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 } 296 }
296 297
297 executable("cpuid") { 298 executable("cpuid") {
298 sources = [ 299 sources = [
299 # sources 300 # sources
300 "util/cpuid.c" 301 "util/cpuid.c"
301 ] 302 ]
302 deps = [ ":libyuv" ] 303 deps = [ ":libyuv" ]
303 } 304 }
304 } 305 }
OLDNEW
« no previous file with comments | « Android.mk ('k') | CMakeLists.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698