OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 }], | 395 }], |
396 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { | 396 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { |
397 'dependencies': [ | 397 'dependencies': [ |
398 '../sandbox/sandbox.gyp:sandbox', | 398 '../sandbox/sandbox.gyp:sandbox', |
399 ], | 399 ], |
400 }], | 400 }], |
401 ], | 401 ], |
402 }, | 402 }, |
403 ], | 403 ], |
404 'conditions': [ | 404 'conditions': [ |
405 ['target_arch=="arm"', { | 405 ['target_arch=="arm" or OS=="win"', { |
406 'targets': [ | 406 'targets': [ |
407 { | 407 { |
408 'target_name': 'omx_video_decode_accelerator_unittest', | 408 'conditions': [ |
| 409 ['target_arch=="arm"', { |
| 410 'target_name': 'omx_video_decode_accelerator_unittest', |
| 411 'include_dirs': [ |
| 412 '<(DEPTH)/third_party/openmax/il', |
| 413 ], |
| 414 }], |
| 415 ['OS=="win"', { |
| 416 'target_name': 'dxva_video_decode_accelerator_unittest', |
| 417 'dependencies': [ |
| 418 '../base/allocator/allocator.gyp:allocator', |
| 419 ], |
| 420 }], |
| 421 ], |
409 'defines!': ['CONTENT_IMPLEMENTATION'], | 422 'defines!': ['CONTENT_IMPLEMENTATION'], |
410 'type': 'executable', | 423 'type': 'executable', |
411 'dependencies': [ | 424 'dependencies': [ |
412 '../base/base.gyp:base', | 425 '../base/base.gyp:base', |
413 'content', | 426 'content', |
414 '../testing/gtest.gyp:gtest', | 427 '../testing/gtest.gyp:gtest', |
415 ], | 428 ], |
416 'include_dirs': [ | 429 'include_dirs': [ |
417 '<(DEPTH)/third_party/angle/include', | 430 '<(DEPTH)/third_party/angle/include', |
418 '<(DEPTH)/third_party/openmax/il', | |
419 ], | 431 ], |
420 'sources': [ | 432 'sources': [ |
421 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', | 433 'common/gpu/media/video_decode_accelerator_unittest.cc', |
422 ], | 434 ], |
423 } | 435 } |
424 ], | 436 ], |
425 }, | 437 }, |
426 ], | 438 ], |
427 ], | 439 ], |
428 } | 440 } |
OLD | NEW |