| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 'sources!': [ | 622 'sources!': [ |
| 623 'common/gpu/media/rendering_helper_gl.cc', | 623 'common/gpu/media/rendering_helper_gl.cc', |
| 624 ], | 624 ], |
| 625 }], | 625 }], |
| 626 ['OS=="win"', { | 626 ['OS=="win"', { |
| 627 'dependencies': [ | 627 'dependencies': [ |
| 628 '../third_party/angle/src/build_angle.gyp:libEGL', | 628 '../third_party/angle/src/build_angle.gyp:libEGL', |
| 629 '../third_party/angle/src/build_angle.gyp:libGLESv2', | 629 '../third_party/angle/src/build_angle.gyp:libGLESv2', |
| 630 ], | 630 ], |
| 631 }], | 631 }], |
| 632 ['OS=="win" and win_use_allocator_shim==1', { | 632 ['(OS=="win" and win_use_allocator_shim==1) or ' |
| 633 '(os_posix == 1 and OS != "mac" and OS != "android" and ' |
| 634 ' linux_use_tcmalloc==1)', { |
| 633 'dependencies': [ | 635 'dependencies': [ |
| 634 '../base/allocator/allocator.gyp:allocator', | 636 '../base/allocator/allocator.gyp:allocator', |
| 635 ], | 637 ], |
| 636 }], | 638 }], |
| 637 ['target_arch != "arm"', { | 639 ['target_arch != "arm"', { |
| 638 'dependencies': [ | 640 'dependencies': [ |
| 639 '../ui/gl/gl.gyp:gl', | 641 '../ui/gl/gl.gyp:gl', |
| 640 ], | 642 ], |
| 641 }], | 643 }], |
| 642 ['target_arch != "arm" and (OS=="linux" or chromeos == 1)', { | 644 ['target_arch != "arm" and (OS=="linux" or chromeos == 1)', { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', | 685 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', |
| 684 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', | 686 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', |
| 685 ], | 687 ], |
| 686 }, | 688 }, |
| 687 'includes': [ '../build/apk_test.gypi' ], | 689 'includes': [ '../build/apk_test.gypi' ], |
| 688 }, | 690 }, |
| 689 ], | 691 ], |
| 690 }], | 692 }], |
| 691 ], | 693 ], |
| 692 } | 694 } |
| OLD | NEW |