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 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
681 ['OS != "android" and OS != "ios"', { | 681 ['OS != "android" and OS != "ios"', { |
682 'dependencies': [ | 682 'dependencies': [ |
683 '../third_party/libvpx/libvpx.gyp:libvpx', | 683 '../third_party/libvpx/libvpx.gyp:libvpx', |
684 ], | 684 ], |
685 }], | 685 }], |
686 ['OS == "android" and gtest_target_type == "shared_library"', { | 686 ['OS == "android" and gtest_target_type == "shared_library"', { |
687 'dependencies': [ | 687 'dependencies': [ |
688 '../testing/android/native_test.gyp:native_test_native_code', | 688 '../testing/android/native_test.gyp:native_test_native_code', |
689 ], | 689 ], |
690 }], | 690 }], |
| 691 ['enable_webrtc==1 and google_tv==1', { |
| 692 'sources': [ |
| 693 'renderer/media/rtc_video_decoder_factory_tv_unittest.cc', |
| 694 ], |
| 695 }], |
691 ], | 696 ], |
692 }, | 697 }, |
693 ], | 698 ], |
694 'conditions': [ | 699 'conditions': [ |
695 ['OS!="ios"', { | 700 ['OS!="ios"', { |
696 'targets': [ | 701 'targets': [ |
697 { | 702 { |
698 'target_name': 'content_browsertests', | 703 'target_name': 'content_browsertests', |
699 'type': '<(gtest_target_type)', | 704 'type': '<(gtest_target_type)', |
700 'defines!': ['CONTENT_IMPLEMENTATION'], | 705 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1170 'resource_dir': 'shell/android/shell_apk/res', | 1175 'resource_dir': 'shell/android/shell_apk/res', |
1171 'additional_src_dirs': ['public/android/javatests/',], | 1176 'additional_src_dirs': ['public/android/javatests/',], |
1172 'is_test_apk': 1, | 1177 'is_test_apk': 1, |
1173 }, | 1178 }, |
1174 'includes': [ '../build/java_apk.gypi' ], | 1179 'includes': [ '../build/java_apk.gypi' ], |
1175 }, | 1180 }, |
1176 ], | 1181 ], |
1177 }], | 1182 }], |
1178 ], | 1183 ], |
1179 } | 1184 } |
OLD | NEW |