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

Side by Side Diff: content/content_tests.gypi

Issue 14247018: Implement WebRTC in Chrome for TV (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: refactored according to Ami's suggestion Created 7 years, 7 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
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 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 ['OS != "android" and OS != "ios"', { 687 ['OS != "android" and OS != "ios"', {
688 'dependencies': [ 688 'dependencies': [
689 '../third_party/libvpx/libvpx.gyp:libvpx', 689 '../third_party/libvpx/libvpx.gyp:libvpx',
690 ], 690 ],
691 }], 691 }],
692 ['OS == "android" and gtest_target_type == "shared_library"', { 692 ['OS == "android" and gtest_target_type == "shared_library"', {
693 'dependencies': [ 693 'dependencies': [
694 '../testing/android/native_test.gyp:native_test_native_code', 694 '../testing/android/native_test.gyp:native_test_native_code',
695 ], 695 ],
696 }], 696 }],
697 ['enable_webrtc==1 and google_tv==1', {
698 'sources': [
699 'renderer/media/rtc_video_decoder_bridge_tv_unittest.cc',
700 ],
701 }],
697 ], 702 ],
698 }, 703 },
699 ], 704 ],
700 'conditions': [ 705 'conditions': [
701 ['OS!="ios"', { 706 ['OS!="ios"', {
702 'targets': [ 707 'targets': [
703 { 708 {
704 'target_name': 'content_browsertests', 709 'target_name': 'content_browsertests',
705 'type': '<(gtest_target_type)', 710 'type': '<(gtest_target_type)',
706 'defines!': ['CONTENT_IMPLEMENTATION'], 711 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 'resource_dir': 'shell/android/shell_apk/res', 1113 'resource_dir': 'shell/android/shell_apk/res',
1109 'additional_src_dirs': ['public/android/javatests/',], 1114 'additional_src_dirs': ['public/android/javatests/',],
1110 'is_test_apk': 1, 1115 'is_test_apk': 1,
1111 }, 1116 },
1112 'includes': [ '../build/java_apk.gypi' ], 1117 'includes': [ '../build/java_apk.gypi' ],
1113 }, 1118 },
1114 ], 1119 ],
1115 }], 1120 }],
1116 ], 1121 ],
1117 } 1122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698