| 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 'video_sender/video_sender_unittest.cc', | 100 'video_sender/video_sender_unittest.cc', |
| 101 ], # source | 101 ], # source |
| 102 }, | 102 }, |
| 103 { | 103 { |
| 104 'target_name': 'cast_sender_app', | 104 'target_name': 'cast_sender_app', |
| 105 'type': 'executable', | 105 'type': 'executable', |
| 106 'include_dirs': [ | 106 'include_dirs': [ |
| 107 '<(DEPTH)/', | 107 '<(DEPTH)/', |
| 108 ], | 108 ], |
| 109 'dependencies': [ | 109 'dependencies': [ |
| 110 'cast_config', |
| 110 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 111 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 111 '<(DEPTH)/net/net.gyp:net_test_support', | 112 '<(DEPTH)/net/net.gyp:net_test_support', |
| 112 'cast_config', | |
| 113 '<(DEPTH)/media/cast/cast_sender.gyp:*', | 113 '<(DEPTH)/media/cast/cast_sender.gyp:*', |
| 114 '<(DEPTH)/media/media.gyp:media', |
| 114 '<(DEPTH)/testing/gtest.gyp:gtest', | 115 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 115 '<(DEPTH)/third_party/opus/opus.gyp:opus', | 116 '<(DEPTH)/third_party/opus/opus.gyp:opus', |
| 116 '<(DEPTH)/media/cast/test/transport/transport.gyp:cast_transport', | 117 '<(DEPTH)/media/cast/test/transport/transport.gyp:cast_transport', |
| 117 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', | 118 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', |
| 118 ], | 119 ], |
| 119 'sources': [ | 120 'sources': [ |
| 120 '<(DEPTH)/media/cast/test/sender.cc', | 121 '<(DEPTH)/media/cast/test/sender.cc', |
| 121 ], | 122 ], |
| 122 }, | 123 }, |
| 123 { | 124 { |
| 124 'target_name': 'cast_receiver_app', | 125 'target_name': 'cast_receiver_app', |
| 125 'type': 'executable', | 126 'type': 'executable', |
| 126 'include_dirs': [ | 127 'include_dirs': [ |
| 127 '<(DEPTH)/', | 128 '<(DEPTH)/', |
| 128 ], | 129 ], |
| 129 'dependencies': [ | 130 'dependencies': [ |
| 131 'cast_config', |
| 130 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 132 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 131 '<(DEPTH)/net/net.gyp:net_test_support', | 133 '<(DEPTH)/net/net.gyp:net_test_support', |
| 132 'cast_config', | |
| 133 '<(DEPTH)/media/cast/cast_receiver.gyp:*', | 134 '<(DEPTH)/media/cast/cast_receiver.gyp:*', |
| 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 |