Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: content/content_tests.gypi

Issue 10749019: VideoDecodeAccelerator now SupportsWeakPtr instead of being RefCountedThreadSafe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698