Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//third_party/openh264/openh264_args.gni") | |
| 6 | |
| 7 if (use_openh264) { | |
| 8 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.
| |
| 9 deps = [ | |
| 10 "//third_party/webrtc/common_video:common_video", | |
| 11 "//third_party/openh264:openh264_encoder", | |
| 12 "//third_party/openh264:openh264_decoder", | |
| 13 ] | |
| 14 include_dirs = [ "//" ] | |
| 15 sources = [ | |
| 16 "h264_codec_tester.cc", | |
| 17 "h264_codec_tester.h", | |
| 18 "h264_decoder_impl.cc", | |
| 19 "h264_decoder_impl.h", | |
| 20 "h264_encoder_impl.cc", | |
| 21 "h264_encoder_impl.h", | |
| 22 "i420_utils.cc", | |
| 23 "i420_utils.h", | |
| 24 ] | |
| 25 } | |
| 26 } | |
| OLD | NEW |