Chromium Code Reviews| Index: BUILD.gn |
| diff --git a/BUILD.gn b/BUILD.gn |
| index 62e06ad4ac9804dd364ca41f81dd531d3f738daa..1f8e0d891c84f0b1e03e152afb6c81a2a60ad88d 100644 |
| --- a/BUILD.gn |
| +++ b/BUILD.gn |
| @@ -19,3 +19,14 @@ group("default") { |
| deps += [ "//webrtc:webrtc_tests" ] |
| } |
| } |
| + |
| +# This needs to be on the top-level to avoid violating the PRESUBMIT rule that |
| +# disallows including sources in higher-level directory levels. |
| +rtc_source_set("libvpx_y4minput") { |
|
phoglund
2016/12/02 09:51:41
I'm not sure about the decision to create a rule r
kjellander_webrtc
2016/12/02 09:58:06
Patrik you're right. My obsession with not duplica
|
| + sources = [ |
| + "third_party/libvpx/source/libvpx/y4minput.c", |
| + ] |
| + deps = [ |
| + "//third_party/libvpx", |
| + ] |
| +} |