OLD | NEW |
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 'chromium_code': 1, | 8 'chromium_code': 1, |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.h', | 109 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.h', |
110 'transport/transport/udp_transport_unittest.cc', | 110 'transport/transport/udp_transport_unittest.cc', |
111 'video_receiver/video_decoder_unittest.cc', | 111 'video_receiver/video_decoder_unittest.cc', |
112 'video_receiver/video_receiver_unittest.cc', | 112 'video_receiver/video_receiver_unittest.cc', |
113 'video_sender/external_video_encoder_unittest.cc', | 113 'video_sender/external_video_encoder_unittest.cc', |
114 'video_sender/video_encoder_impl_unittest.cc', | 114 'video_sender/video_encoder_impl_unittest.cc', |
115 'video_sender/video_sender_unittest.cc', | 115 'video_sender/video_sender_unittest.cc', |
116 ], # source | 116 ], # source |
117 }, | 117 }, |
118 { | 118 { |
| 119 'target_name': 'log_encoding_app', |
| 120 'type': 'executable', |
| 121 'include_dirs': [ |
| 122 '<(DEPTH)/', |
| 123 ], |
| 124 'dependencies': [ |
| 125 '<(DEPTH)/base/base.gyp:base', |
| 126 '<(DEPTH)/base/base.gyp:test_support_base', |
| 127 '<(DEPTH)/net/net.gyp:net', |
| 128 'cast_config', |
| 129 'cast_logging_proto_lib', |
| 130 ], |
| 131 'sources': [ |
| 132 '<(DEPTH)/media/cast/test/log_encoder.cc', |
| 133 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
| 134 # TODO(imcheng): Don't do this |
| 135 'test/fake_single_thread_task_runner.cc', |
| 136 'test/fake_single_thread_task_runner.h', |
| 137 ], |
| 138 }, |
| 139 { |
119 'target_name': 'cast_sender_app', | 140 'target_name': 'cast_sender_app', |
120 'type': 'executable', | 141 'type': 'executable', |
121 'include_dirs': [ | 142 'include_dirs': [ |
122 '<(DEPTH)/', | 143 '<(DEPTH)/', |
123 ], | 144 ], |
124 'dependencies': [ | 145 'dependencies': [ |
125 'cast_config', | 146 'cast_config', |
126 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 147 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
127 '<(DEPTH)/net/net.gyp:net_test_support', | 148 '<(DEPTH)/net/net.gyp:net_test_support', |
128 '<(DEPTH)/media/cast/cast_sender.gyp:*', | 149 '<(DEPTH)/media/cast/cast_sender.gyp:*', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 'variables': { | 200 'variables': { |
180 'proto_in_dir': 'logging/proto', | 201 'proto_in_dir': 'logging/proto', |
181 'proto_out_dir': 'media/cast/logging/proto', | 202 'proto_out_dir': 'media/cast/logging/proto', |
182 }, | 203 }, |
183 'includes': ['../../build/protoc.gypi'], | 204 'includes': ['../../build/protoc.gypi'], |
184 }, | 205 }, |
185 ], # targets | 206 ], # targets |
186 }], # include_tests | 207 }], # include_tests |
187 ], | 208 ], |
188 } | 209 } |
OLD | NEW |