Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(915)

Side by Side Diff: third_party/openh264/testing/BUILD.gn

Issue 1446453004: Adding third_party/openh264 build files for encoding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed torbjorng's comments Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698