| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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_cast_utility_apps%': 0, | 7 'include_cast_utility_apps%': 0, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 'test/utility/video_utility.h', | 39 'test/utility/video_utility.h', |
| 40 'test/utility/udp_proxy.cc', | 40 'test/utility/udp_proxy.cc', |
| 41 'test/utility/udp_proxy.h', | 41 'test/utility/udp_proxy.h', |
| 42 ], # source | 42 ], # source |
| 43 }, | 43 }, |
| 44 { | 44 { |
| 45 'target_name': 'cast_unittests', | 45 'target_name': 'cast_unittests', |
| 46 'type': '<(gtest_target_type)', | 46 'type': '<(gtest_target_type)', |
| 47 'include_dirs': [ | 47 'include_dirs': [ |
| 48 '<(DEPTH)/', | 48 '<(DEPTH)/', |
| 49 # TODO(miu): Remove WebRTC dependency (RtpHeader), and then these two deps: | |
| 50 '<(DEPTH)/third_party/', | |
| 51 '<(DEPTH)/third_party/webrtc/', | |
| 52 ], | 49 ], |
| 53 'dependencies': [ | 50 'dependencies': [ |
| 54 'cast_base', | 51 'cast_base', |
| 55 'cast_receiver', | 52 'cast_receiver', |
| 56 'cast_rtcp', | 53 'cast_rtcp', |
| 57 'cast_sender', | 54 'cast_sender', |
| 58 'cast_test_utility', | 55 'cast_test_utility', |
| 59 'cast_transport', | 56 'cast_transport', |
| 60 '<(DEPTH)/base/base.gyp:test_support_base', | 57 '<(DEPTH)/base/base.gyp:test_support_base', |
| 61 '<(DEPTH)/net/net.gyp:net', | 58 '<(DEPTH)/net/net.gyp:net', |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 '<(DEPTH)/media/media.gyp:media', | 219 '<(DEPTH)/media/media.gyp:media', |
| 223 ], | 220 ], |
| 224 'sources': [ | 221 'sources': [ |
| 225 'test/utility/udp_proxy_main.cc', | 222 'test/utility/udp_proxy_main.cc', |
| 226 ], | 223 ], |
| 227 }, | 224 }, |
| 228 ], # targets | 225 ], # targets |
| 229 }], | 226 }], |
| 230 ], # conditions | 227 ], # conditions |
| 231 } | 228 } |
| OLD | NEW |