OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'targets': [ | 10 'targets': [ |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 ['OS=="mac"', { | 190 ['OS=="mac"', { |
191 'xcode_settings': { | 191 'xcode_settings': { |
192 'OTHER_LDFLAGS': [ | 192 'OTHER_LDFLAGS': [ |
193 '-framework Foundation -framework AppKit -framework Cocoa -fra
mework OpenGL', | 193 '-framework Foundation -framework AppKit -framework Cocoa -fra
mework OpenGL', |
194 ], | 194 ], |
195 }, | 195 }, |
196 }], | 196 }], |
197 ] # conditions | 197 ] # conditions |
198 }, # video_render_module_test | 198 }, # video_render_module_test |
199 ], # targets | 199 ], # targets |
200 'conditions': [ | |
201 ['test_isolation_mode != "noop"', { | |
202 'targets': [ | |
203 { | |
204 'target_name': 'video_render_tests_run', | |
205 'type': 'none', | |
206 'dependencies': [ | |
207 'video_render_tests', | |
208 ], | |
209 'includes': [ | |
210 '../../build/isolate.gypi', | |
211 ], | |
212 'sources': [ | |
213 'video_render_tests.isolate', | |
214 ], | |
215 }, | |
216 ], | |
217 }], | |
218 ], | |
219 }], # include_tests==1 | 200 }], # include_tests==1 |
220 ], # conditions | 201 ], # conditions |
221 } | 202 } |
222 | 203 |
OLD | NEW |