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