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

Side by Side Diff: media/cast/rtcp/rtcp.gyp

Issue 245893005: [Cast] Consolidate plethora of GYP files into cast.gyp and cast_testing.gypi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months 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 | Annotate | Revision Log
« no previous file with comments | « media/cast/logging/logging.gyp ('k') | media/cast/rtp_receiver/rtp_parser/rtp_parser.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2013 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 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'cast_rtcp',
12 'type': 'static_library',
13 'include_dirs': [
14 '<(DEPTH)/',
15 ],
16 'sources': [
17 'rtcp_defines.cc',
18 'rtcp_defines.h',
19 'rtcp.h',
20 'rtcp.cc',
21 'rtcp_receiver.cc',
22 'rtcp_receiver.h',
23 'rtcp_sender.cc',
24 'rtcp_sender.h',
25 'rtcp_utility.cc',
26 'rtcp_utility.h',
27 'sender_rtcp_event_subscriber.cc',
28 'sender_rtcp_event_subscriber.h',
29 'receiver_rtcp_event_subscriber.cc',
30 'receiver_rtcp_event_subscriber.cc',
31 ], # source
32 'dependencies': [
33 '<(DEPTH)/base/base.gyp:base',
34 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
35 '<(DEPTH)/net/net.gyp:net',
36 ],
37 },
38 {
39 'target_name': 'cast_rtcp_test',
40 'type': 'static_library',
41 'include_dirs': [
42 '<(DEPTH)/',
43 ],
44 'sources': [
45 'test_rtcp_packet_builder.cc',
46 'test_rtcp_packet_builder.h',
47 ], # source
48 'dependencies': [
49 'cast_rtcp',
50 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
51 '<(DEPTH)/testing/gtest.gyp:gtest',
52 ],
53 },
54 ],
55 }
56
OLDNEW
« no previous file with comments | « media/cast/logging/logging.gyp ('k') | media/cast/rtp_receiver/rtp_parser/rtp_parser.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698