OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 ['OS != "android" and OS != "ios"', { | 695 ['OS != "android" and OS != "ios"', { |
696 'dependencies': [ | 696 'dependencies': [ |
697 '../third_party/libvpx/libvpx.gyp:libvpx', | 697 '../third_party/libvpx/libvpx.gyp:libvpx', |
698 ], | 698 ], |
699 }], | 699 }], |
700 ['OS == "android" and gtest_target_type == "shared_library"', { | 700 ['OS == "android" and gtest_target_type == "shared_library"', { |
701 'dependencies': [ | 701 'dependencies': [ |
702 '../testing/android/native_test.gyp:native_test_native_code', | 702 '../testing/android/native_test.gyp:native_test_native_code', |
703 ], | 703 ], |
704 }], | 704 }], |
| 705 ['enable_webrtc==1 and google_tv==1', { |
| 706 'sources': [ |
| 707 'renderer/media/rtc_video_decoder_factory_tv_unittest.cc', |
| 708 ], |
| 709 }], |
705 ], | 710 ], |
706 }, | 711 }, |
707 ], | 712 ], |
708 'conditions': [ | 713 'conditions': [ |
709 ['OS!="ios"', { | 714 ['OS!="ios"', { |
710 'targets': [ | 715 'targets': [ |
711 { | 716 { |
712 'target_name': 'content_browsertests', | 717 'target_name': 'content_browsertests', |
713 'type': '<(gtest_target_type)', | 718 'type': '<(gtest_target_type)', |
714 'defines!': ['CONTENT_IMPLEMENTATION'], | 719 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1117 'resource_dir': 'shell/android/shell_apk/res', | 1122 'resource_dir': 'shell/android/shell_apk/res', |
1118 'additional_src_dirs': ['public/android/javatests/',], | 1123 'additional_src_dirs': ['public/android/javatests/',], |
1119 'is_test_apk': 1, | 1124 'is_test_apk': 1, |
1120 }, | 1125 }, |
1121 'includes': [ '../build/java_apk.gypi' ], | 1126 'includes': [ '../build/java_apk.gypi' ], |
1122 }, | 1127 }, |
1123 ], | 1128 ], |
1124 }], | 1129 }], |
1125 ], | 1130 ], |
1126 } | 1131 } |
OLD | NEW |