| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 }, | 100 }, |
| 101 { | 101 { |
| 102 'target_name': 'cast_sender_app', | 102 'target_name': 'cast_sender_app', |
| 103 'type': 'executable', | 103 'type': 'executable', |
| 104 'include_dirs': [ | 104 'include_dirs': [ |
| 105 '<(DEPTH)/', | 105 '<(DEPTH)/', |
| 106 ], | 106 ], |
| 107 'dependencies': [ | 107 'dependencies': [ |
| 108 'cast_config', | 108 'cast_config', |
| 109 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 109 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 110 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 110 '<(DEPTH)/net/net.gyp:net_test_support', | 111 '<(DEPTH)/net/net.gyp:net_test_support', |
| 111 '<(DEPTH)/media/cast/cast_sender.gyp:*', | 112 '<(DEPTH)/media/cast/cast_sender.gyp:*', |
| 112 '<(DEPTH)/media/media.gyp:media', | 113 '<(DEPTH)/media/media.gyp:media', |
| 113 '<(DEPTH)/testing/gtest.gyp:gtest', | 114 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 114 '<(DEPTH)/third_party/opus/opus.gyp:opus', | 115 '<(DEPTH)/third_party/opus/opus.gyp:opus', |
| 115 '<(DEPTH)/media/cast/test/transport/transport.gyp:cast_transport', | 116 '<(DEPTH)/media/cast/test/transport/transport.gyp:cast_transport', |
| 116 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', | 117 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', |
| 117 ], | 118 ], |
| 118 'sources': [ | 119 'sources': [ |
| 119 '<(DEPTH)/media/cast/test/sender.cc', | 120 '<(DEPTH)/media/cast/test/sender.cc', |
| 120 ], | 121 ], |
| 121 }, | 122 }, |
| 122 { | 123 { |
| 123 'target_name': 'cast_receiver_app', | 124 'target_name': 'cast_receiver_app', |
| 124 'type': 'executable', | 125 'type': 'executable', |
| 125 'include_dirs': [ | 126 'include_dirs': [ |
| 126 '<(DEPTH)/', | 127 '<(DEPTH)/', |
| 127 ], | 128 ], |
| 128 'dependencies': [ | 129 'dependencies': [ |
| 129 'cast_config', | 130 'cast_config', |
| 130 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 131 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 132 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 131 '<(DEPTH)/net/net.gyp:net_test_support', | 133 '<(DEPTH)/net/net.gyp:net_test_support', |
| 132 '<(DEPTH)/media/cast/cast_receiver.gyp:*', | 134 '<(DEPTH)/media/cast/cast_receiver.gyp:*', |
| 133 '<(DEPTH)/media/media.gyp:media', | 135 '<(DEPTH)/media/media.gyp:media', |
| 134 '<(DEPTH)/testing/gtest.gyp:gtest', | 136 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 135 '<(DEPTH)/media/cast/test/transport/transport.gyp:cast_transport', | 137 '<(DEPTH)/media/cast/test/transport/transport.gyp:cast_transport', |
| 136 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', | 138 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', |
| 137 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', | 139 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', |
| 138 ], | 140 ], |
| 139 'sources': [ | 141 'sources': [ |
| 140 '<(DEPTH)/media/cast/test/receiver.cc', | 142 '<(DEPTH)/media/cast/test/receiver.cc', |
| 141 ], | 143 ], |
| 142 'conditions': [ | 144 'conditions': [ |
| 143 ['OS == "linux"', { | 145 ['OS == "linux"', { |
| 144 'sources': [ | 146 'sources': [ |
| 145 '<(DEPTH)/media/cast/test/linux_output_window.cc', | 147 '<(DEPTH)/media/cast/test/linux_output_window.cc', |
| 146 '<(DEPTH)/media/cast/test/linux_output_window.h', | 148 '<(DEPTH)/media/cast/test/linux_output_window.h', |
| 147 ], | 149 ], |
| 148 'libraries': [ | 150 'libraries': [ |
| 149 '-lXext', | 151 '-lXext', |
| 150 '-lX11', | 152 '-lX11', |
| 151 ], | 153 ], |
| 152 }], | 154 }], |
| 153 ], | 155 ], |
| 154 }, | 156 }, |
| 155 ], # targets | 157 ], # targets |
| 156 }], # include_tests | 158 }], # include_tests |
| 157 ], | 159 ], |
| 158 } | 160 } |
| OLD | NEW |