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