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