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

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

Issue 34623008: Change to calculate the real NTP in TimeTicks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
« no previous file with comments | « no previous file | media/cast/cast_defines.h » ('j') | media/cast/cast_defines.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'include_tests%': 1, 7 'include_tests%': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'cast_config', 11 'target_name': 'cast_config',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '<(DEPTH)/', 14 '<(DEPTH)/',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'cast_config.cc', 17 'cast_config.cc',
18 'cast_config.h', 18 'cast_config.h',
19 'cast_environment.cc', 19 'cast_environment.cc',
20 'cast_environment.h', 20 'cast_environment.h',
21 'cast_ntp_tick_clock.cc',
22 'cast_ntp_tick_clock.h',
21 ], # source 23 ], # source
22 }, 24 },
23 ], # targets, 25 ], # targets,
24 'conditions': [ 26 'conditions': [
25 ['include_tests==1', { 27 ['include_tests==1', {
26 'targets': [ 28 'targets': [
27 { 29 {
28 'target_name': 'cast_unittests', 30 'target_name': 'cast_unittests',
29 'type': '<(gtest_target_type)', 31 'type': '<(gtest_target_type)',
30 'dependencies': [ 32 'dependencies': [
31 'cast_config', 33 'cast_config',
32 'cast_receiver.gyp:cast_receiver', 34 'cast_receiver.gyp:cast_receiver',
33 'cast_sender.gyp:cast_sender', 35 'cast_sender.gyp:cast_sender',
34 'logging/logging.gyp:cast_logging', 36 'logging/logging.gyp:cast_logging',
35 '<(DEPTH)/base/base.gyp:run_all_unittests', 37 '<(DEPTH)/base/base.gyp:run_all_unittests',
36 '<(DEPTH)/net/net.gyp:net', 38 '<(DEPTH)/net/net.gyp:net',
37 '<(DEPTH)/testing/gmock.gyp:gmock', 39 '<(DEPTH)/testing/gmock.gyp:gmock',
38 '<(DEPTH)/testing/gtest.gyp:gtest', 40 '<(DEPTH)/testing/gtest.gyp:gtest',
39 ], 41 ],
40 'include_dirs': [ 42 'include_dirs': [
41 '<(DEPTH)/', 43 '<(DEPTH)/',
42 '<(DEPTH)/third_party/', 44 '<(DEPTH)/third_party/',
43 '<(DEPTH)/third_party/webrtc/', 45 '<(DEPTH)/third_party/webrtc/',
44 ], 46 ],
45 'sources': [ 47 'sources': [
46 'audio_receiver/audio_decoder_unittest.cc', 48 'audio_receiver/audio_decoder_unittest.cc',
47 'audio_receiver/audio_receiver_unittest.cc', 49 'audio_receiver/audio_receiver_unittest.cc',
48 'audio_sender/audio_encoder_unittest.cc', 50 'audio_sender/audio_encoder_unittest.cc',
49 'audio_sender/audio_sender_unittest.cc', 51 'audio_sender/audio_sender_unittest.cc',
52 'cast_ntp_tick_clock_unittest.cc',
50 'congestion_control/congestion_control_unittest.cc', 53 'congestion_control/congestion_control_unittest.cc',
51 'framer/cast_message_builder_unittest.cc', 54 'framer/cast_message_builder_unittest.cc',
52 'framer/frame_buffer_unittest.cc', 55 'framer/frame_buffer_unittest.cc',
53 'framer/framer_unittest.cc', 56 'framer/framer_unittest.cc',
54 'pacing/mock_paced_packet_sender.cc', 57 'pacing/mock_paced_packet_sender.cc',
55 'pacing/mock_paced_packet_sender.h', 58 'pacing/mock_paced_packet_sender.h',
56 'pacing/paced_sender_unittest.cc', 59 'pacing/paced_sender_unittest.cc',
57 'rtcp/mock_rtcp_receiver_feedback.cc', 60 'rtcp/mock_rtcp_receiver_feedback.cc',
58 'rtcp/mock_rtcp_receiver_feedback.h', 61 'rtcp/mock_rtcp_receiver_feedback.h',
59 'rtcp/mock_rtcp_sender_feedback.cc', 62 'rtcp/mock_rtcp_sender_feedback.cc',
(...skipping 23 matching lines...) Expand all
83 'rtcp/rtcp_sender_unittest.cc', 86 'rtcp/rtcp_sender_unittest.cc',
84 'rtcp/rtcp_unittest.cc', 87 'rtcp/rtcp_unittest.cc',
85 'video_sender/video_encoder_unittest.cc', 88 'video_sender/video_encoder_unittest.cc',
86 'video_sender/video_sender_unittest.cc', 89 'video_sender/video_sender_unittest.cc',
87 ], # source 90 ], # source
88 }, 91 },
89 ], # targets 92 ], # targets
90 }], # include_tests 93 }], # include_tests
91 ], 94 ],
92 } 95 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/cast_defines.h » ('j') | media/cast/cast_defines.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698