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

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: Rebase with master 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 'conditions': [
7 ['use_openh264==1', {
8 # Building with OpenH264.
9 'targets': [
10 {
11 'target_name': 'openh264_testing',
12 'type': 'static_library',
13 'dependencies': [
14 '<(DEPTH)/third_party/webrtc/common_video/common_video.gyp:common_vi deo',
15 '../openh264.gyp:openh264_encoder',
16 '../openh264.gyp:openh264_decoder',
17 ],
18 'include_dirs': [
19 '<(DEPTH)',
20 ],
21 'sources': [
torbjorng 2015/11/18 14:41:09 Please canonicalize file order (alphabetically as
hbos_chromium 2015/11/18 15:55:04 Done.
22 'i420_utils.cc',
23 'i420_utils.h',
24 'h264_codec_tester.cc',
25 'h264_codec_tester.h',
26 'h264_encoder_impl.cc',
27 'h264_encoder_impl.h',
28 'h264_decoder_impl.cc',
29 'h264_decoder_impl.h',
30 ],
31 },
32 ],
33 },{
34 # Building without OpenH264. Defining a dummy target because every build
35 # file needs to have at least one target.
36 'targets': [
37 {
38 'target_name': 'openh264_testing_dummy_target',
39 'type': 'none',
40 }
41 ],
42 }],
43 ],
44 }
OLDNEW
« third_party/openh264/testing/i420_utils.cc ('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