| OLD | NEW |
| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "source/scale_msa.cc", |
| 168 "source/rotate_msa.cc", |
| 168 ] | 169 ] |
| 169 | 170 |
| 170 public_configs = [ ":libyuv_config" ] | 171 public_configs = [ ":libyuv_config" ] |
| 171 } | 172 } |
| 172 } | 173 } |
| 173 | 174 |
| 174 if (libyuv_include_tests) { | 175 if (libyuv_include_tests) { |
| 175 config("libyuv_unittest_warnings_config") { | 176 config("libyuv_unittest_warnings_config") { |
| 176 if (!is_win) { | 177 if (!is_win) { |
| 177 cflags = [ | 178 cflags = [ |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 } | 297 } |
| 297 | 298 |
| 298 executable("cpuid") { | 299 executable("cpuid") { |
| 299 sources = [ | 300 sources = [ |
| 300 # sources | 301 # sources |
| 301 "util/cpuid.c" | 302 "util/cpuid.c" |
| 302 ] | 303 ] |
| 303 deps = [ ":libyuv" ] | 304 deps = [ ":libyuv" ] |
| 304 } | 305 } |
| 305 } | 306 } |
| OLD | NEW |