| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //media/cast:test_support | 8 # GN version: //media/cast:test_support |
| 9 'target_name': 'cast_test_utility', | 9 'target_name': 'cast_test_utility', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 'target_name': 'cast_receiver_app', | 177 'target_name': 'cast_receiver_app', |
| 178 'type': 'executable', | 178 'type': 'executable', |
| 179 'include_dirs': [ | 179 'include_dirs': [ |
| 180 '<(DEPTH)/', | 180 '<(DEPTH)/', |
| 181 ], | 181 ], |
| 182 'dependencies': [ | 182 'dependencies': [ |
| 183 'cast_base', | 183 'cast_base', |
| 184 'cast_net', | 184 'cast_net', |
| 185 'cast_receiver', | 185 'cast_receiver', |
| 186 'cast_test_utility', | 186 'cast_test_utility', |
| 187 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 187 '<(DEPTH)/net/net.gyp:net_test_support', | 188 '<(DEPTH)/net/net.gyp:net_test_support', |
| 188 '<(DEPTH)/media/media.gyp:media', | 189 '<(DEPTH)/media/media.gyp:media', |
| 189 '<(DEPTH)/testing/gtest.gyp:gtest', | 190 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 190 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | 191 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', |
| 191 ], | 192 ], |
| 192 'sources': [ | 193 'sources': [ |
| 193 '<(DEPTH)/media/cast/test/receiver.cc', | 194 '<(DEPTH)/media/cast/test/receiver.cc', |
| 194 ], | 195 ], |
| 195 'conditions': [ | 196 'conditions': [ |
| 196 ['OS == "linux" and use_x11==1', { | 197 ['OS == "linux" and use_x11==1', { |
| 197 'dependencies': [ | 198 'dependencies': [ |
| 198 '<(DEPTH)/build/linux/system.gyp:x11', | 199 '<(DEPTH)/build/linux/system.gyp:x11', |
| 199 '<(DEPTH)/build/linux/system.gyp:xext', | 200 '<(DEPTH)/build/linux/system.gyp:xext', |
| 200 ], | 201 ], |
| 201 'sources': [ | 202 'sources': [ |
| 202 '<(DEPTH)/media/cast/test/linux_output_window.cc', | 203 '<(DEPTH)/media/cast/test/linux_output_window.cc', |
| 203 '<(DEPTH)/media/cast/test/linux_output_window.h', | 204 '<(DEPTH)/media/cast/test/linux_output_window.h', |
| 204 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | |
| 205 ], | 205 ], |
| 206 }], | 206 }], |
| 207 ], | 207 ], |
| 208 }, | 208 }, |
| 209 { | 209 { |
| 210 'target_name': 'cast_sender_app', | 210 'target_name': 'cast_sender_app', |
| 211 'type': 'executable', | 211 'type': 'executable', |
| 212 'include_dirs': [ | 212 'include_dirs': [ |
| 213 '<(DEPTH)/', | 213 '<(DEPTH)/', |
| 214 ], | 214 ], |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 '../../build/isolate.gypi', | 375 '../../build/isolate.gypi', |
| 376 ], | 376 ], |
| 377 'sources': [ | 377 'sources': [ |
| 378 'cast_unittests.isolate', | 378 'cast_unittests.isolate', |
| 379 ], | 379 ], |
| 380 }, | 380 }, |
| 381 ], | 381 ], |
| 382 }], | 382 }], |
| 383 ], # conditions | 383 ], # conditions |
| 384 } | 384 } |
| OLD | NEW |