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

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 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 'sources!': [ 621 'sources!': [
622 'common/gpu/media/rendering_helper_gl.cc', 622 'common/gpu/media/rendering_helper_gl.cc',
623 ], 623 ],
624 }], 624 }],
625 ['OS=="win"', { 625 ['OS=="win"', {
626 'dependencies': [ 626 'dependencies': [
627 '../third_party/angle/src/build_angle.gyp:libEGL', 627 '../third_party/angle/src/build_angle.gyp:libEGL',
628 '../third_party/angle/src/build_angle.gyp:libGLESv2', 628 '../third_party/angle/src/build_angle.gyp:libGLESv2',
629 ], 629 ],
630 }], 630 }],
631 ['OS=="win" and win_use_allocator_shim==1', { 631 ['(OS=="win" and win_use_allocator_shim==1) or '
632 'os_posix == 1 and OS != "mac" and OS != "android" and '
brettw 2012/07/16 22:11:54 Can you add another set of parens here to make the
Ami GONE FROM CHROMIUM 2012/07/16 22:34:04 Done.
633 'linux_use_tcmalloc==1', {
632 'dependencies': [ 634 'dependencies': [
633 '../base/allocator/allocator.gyp:allocator', 635 '../base/allocator/allocator.gyp:allocator',
634 ], 636 ],
635 }], 637 }],
636 ['target_arch != "arm"', { 638 ['target_arch != "arm"', {
637 'dependencies': [ 639 'dependencies': [
638 '../ui/gl/gl.gyp:gl', 640 '../ui/gl/gl.gyp:gl',
639 ], 641 ],
640 }], 642 }],
641 ['target_arch != "arm" and (OS=="linux" or chromeos == 1)', { 643 ['target_arch != "arm" and (OS=="linux" or chromeos == 1)', {
(...skipping 41 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