| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This config is applied to targets that depend on libvpx. | |
| 6 config("libvpx_external_config") { | |
| 7 include_dirs = [ | |
| 8 "//third_party/libvpx_new/source/libvpx", | |
| 9 ] | |
| 10 } | |
| 11 | |
| 12 static_library("libvpx") { | 5 static_library("libvpx") { |
| 13 deps = [ | 6 deps = [ |
| 14 "//third_party/libvpx_new", | 7 "//third_party/libvpx_new", |
| 15 ] | 8 ] |
| 16 public_configs = [ ":libvpx_external_config" ] | 9 include_dirs = [ |
| 10 "//third_party/libvpx_new/source/libvpx", |
| 11 ] |
| 17 } | 12 } |
| OLD | NEW |