| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'conditions': [ | 6 'conditions': [ |
| 7 ['OS=="win" or OS=="mac" or OS=="linux"', { | 7 ['OS=="win" or OS=="mac" or OS=="linux"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 # This is a target for the collection of cast development tools. They | 10 # This is a target for the collection of cast development tools. They |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'cast_net', | 30 'cast_net', |
| 31 'cast_receiver', | 31 'cast_receiver', |
| 32 'cast_sender', | 32 'cast_sender', |
| 33 'cast_test_utility', | 33 'cast_test_utility', |
| 34 '<(DEPTH)/net/net.gyp:net', | 34 '<(DEPTH)/net/net.gyp:net', |
| 35 '<(DEPTH)/testing/gtest.gyp:gtest', | 35 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 36 ], | 36 ], |
| 37 'sources': [ | 37 'sources': [ |
| 38 'test/cast_benchmarks.cc', | 38 'test/cast_benchmarks.cc', |
| 39 ], # source | 39 ], # source |
| 40 'conditions': [ | |
| 41 ['os_posix==1 and OS!="mac" and OS!="ios" and use_allocator!="none"'
, | |
| 42 { | |
| 43 'dependencies': [ | |
| 44 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | |
| 45 ], | |
| 46 } | |
| 47 ], | |
| 48 ], | |
| 49 }, | 40 }, |
| 50 { | 41 { |
| 51 # GN version: //media/cast:cast_receiver_app | 42 # GN version: //media/cast:cast_receiver_app |
| 52 'target_name': 'cast_receiver_app', | 43 'target_name': 'cast_receiver_app', |
| 53 'type': 'executable', | 44 'type': 'executable', |
| 54 'include_dirs': [ | 45 'include_dirs': [ |
| 55 '<(DEPTH)/', | 46 '<(DEPTH)/', |
| 56 ], | 47 ], |
| 57 'dependencies': [ | 48 'dependencies': [ |
| 58 'cast_common', | 49 'cast_common', |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 '<(DEPTH)/media/media.gyp:media', | 193 '<(DEPTH)/media/media.gyp:media', |
| 203 ], | 194 ], |
| 204 'sources': [ | 195 'sources': [ |
| 205 'test/utility/tap_proxy.cc', | 196 'test/utility/tap_proxy.cc', |
| 206 ], | 197 ], |
| 207 } | 198 } |
| 208 ] | 199 ] |
| 209 }], | 200 }], |
| 210 ], # conditions | 201 ], # conditions |
| 211 } | 202 } |
| OLD | NEW |