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

Side by Side Diff: third_party/openh264/testing/openh264_testing.gyp

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 {
6 'includes': [
7 '../openh264_args.gypi',
8 ],
9 'conditions': [
10 ['use_openh264==1', {
11 # Building with OpenH264.
12 'targets': [
13 {
14 'target_name': 'openh264_testing',
15 'type': 'static_library',
16 'dependencies': [
17 '<(DEPTH)/third_party/webrtc/common_video/common_video.gyp:common_vi deo',
18 '../openh264.gyp:openh264_encoder',
19 '../openh264.gyp:openh264_decoder',
20 ],
21 'include_dirs': [
22 '<(DEPTH)',
23 ],
24 'sources': [
25 'h264_codec_tester.cc',
26 'h264_codec_tester.h',
27 'h264_decoder_impl.cc',
28 'h264_decoder_impl.h',
29 'h264_encoder_impl.cc',
30 'h264_encoder_impl.h',
31 'i420_utils.cc',
32 'i420_utils.h',
33 ],
34 },
35 ],
36 },{
37 # Building without OpenH264. Defining a dummy target because every build
38 # file needs to have at least one target.
39 'targets': [
40 {
41 'target_name': 'openh264_testing_dummy_target',
42 'type': 'none',
43 }
44 ],
45 }],
46 ],
47 }
OLDNEW
« third_party/openh264/testing/BUILD.gn ('K') | « third_party/openh264/testing/i420_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698