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

Side by Side Diff: webrtc/modules/video_coding/codecs/vp8/vp8.gyp

Issue 2509703002: Remove all references to GYP (Closed)
Patch Set: Rebased Created 4 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 (c) 2012 The WebRTC project authors. All Rights Reserved.
2 #
3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree.
8
9 {
10 'includes': [
11 '../../../../build/common.gypi',
12 ],
13 'targets': [
14 {
15 'target_name': 'webrtc_vp8',
16 'type': 'static_library',
17 'dependencies': [
18 '<(webrtc_root)/common.gyp:webrtc_common',
19 '<(webrtc_root)/common_video/common_video.gyp:common_video',
20 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi deo_coding_utility',
21 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
22 ],
23 'conditions': [
24 ['build_libvpx==1', {
25 'dependencies': [
26 '<(libvpx_dir)/libvpx.gyp:libvpx',
27 ],
28 }],
29 ],
30 'sources': [
31 'default_temporal_layers.cc',
32 'default_temporal_layers.h',
33 'include/vp8.h',
34 'include/vp8_common_types.h',
35 'realtime_temporal_layers.cc',
36 'reference_picture_selection.cc',
37 'reference_picture_selection.h',
38 'screenshare_layers.cc',
39 'screenshare_layers.h',
40 'simulcast_encoder_adapter.cc',
41 'simulcast_encoder_adapter.h',
42 'temporal_layers.h',
43 'vp8_impl.cc',
44 'vp8_impl.h',
45 ],
46 # Disable warnings to enable Win64 build, issue 1323.
47 'msvs_disabled_warnings': [
48 4267, # size_t to int truncation.
49 ],
50 },
51 ], # targets
52 'conditions': [
53 ['include_tests==1', {
54 'targets': [
55 {
56 'target_name': 'vp8_coder',
57 'type': 'executable',
58 'dependencies': [
59 'webrtc_vp8',
60 '<(webrtc_root)/common_video/common_video.gyp:common_video',
61 '<(DEPTH)/testing/gtest.gyp:gtest',
62 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' ,
63 '<(webrtc_root)/test/test.gyp:test_support_main',
64 '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
65 ],
66 'sources': [
67 'vp8_sequence_coder.cc',
68 ],
69 },
70 ], # targets
71 }], # include_tests
72 ],
73 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/codecs/vp8/OWNERS ('k') | webrtc/modules/video_coding/codecs/vp9/vp9.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698