Chromium Code Reviews| Index: third_party/openh264/testing/BUILD.gn |
| diff --git a/third_party/openh264/testing/BUILD.gn b/third_party/openh264/testing/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fcc71ddba04fbf9afeb4f22d545496593fbc54f2 |
| --- /dev/null |
| +++ b/third_party/openh264/testing/BUILD.gn |
| @@ -0,0 +1,26 @@ |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +import("//third_party/openh264/openh264_args.gni") |
| + |
| +if (use_openh264) { |
| + static_library("openh264_testing") { |
|
Dirk Pranke
2015/11/19 02:46:56
same comments about source_set vs. static_library
hbos_chromium
2015/11/19 13:00:43
Done.
|
| + deps = [ |
| + "//third_party/webrtc/common_video:common_video", |
| + "//third_party/openh264:openh264_encoder", |
| + "//third_party/openh264:openh264_decoder", |
| + ] |
| + include_dirs = [ "//" ] |
| + sources = [ |
| + "h264_codec_tester.cc", |
| + "h264_codec_tester.h", |
| + "h264_decoder_impl.cc", |
| + "h264_decoder_impl.h", |
| + "h264_encoder_impl.cc", |
| + "h264_encoder_impl.h", |
| + "i420_utils.cc", |
| + "i420_utils.h", |
| + ] |
| + } |
| +} |