| OLD | NEW |
| 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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 ['OS != "android" and OS != "ios"', { | 683 ['OS != "android" and OS != "ios"', { |
| 684 'dependencies': [ | 684 'dependencies': [ |
| 685 '../third_party/libvpx/libvpx.gyp:libvpx', | 685 '../third_party/libvpx/libvpx.gyp:libvpx', |
| 686 ], | 686 ], |
| 687 }], | 687 }], |
| 688 ['OS == "android" and gtest_target_type == "shared_library"', { | 688 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 689 'dependencies': [ | 689 'dependencies': [ |
| 690 '../testing/android/native_test.gyp:native_test_native_code', | 690 '../testing/android/native_test.gyp:native_test_native_code', |
| 691 ], | 691 ], |
| 692 }], | 692 }], |
| 693 ['enable_webrtc==1 and google_tv==1', { |
| 694 'sources': [ |
| 695 'renderer/media/rtc_video_decoder_bridge_tv_unittest.cc', |
| 696 ], |
| 697 }], |
| 693 ], | 698 ], |
| 694 }, | 699 }, |
| 695 ], | 700 ], |
| 696 'conditions': [ | 701 'conditions': [ |
| 697 ['OS!="ios"', { | 702 ['OS!="ios"', { |
| 698 'targets': [ | 703 'targets': [ |
| 699 { | 704 { |
| 700 'target_name': 'content_browsertests', | 705 'target_name': 'content_browsertests', |
| 701 'type': '<(gtest_target_type)', | 706 'type': '<(gtest_target_type)', |
| 702 'defines!': ['CONTENT_IMPLEMENTATION'], | 707 'defines!': ['CONTENT_IMPLEMENTATION'], |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1104 'resource_dir': 'shell/android/shell_apk/res', | 1109 'resource_dir': 'shell/android/shell_apk/res', |
| 1105 'additional_src_dirs': ['public/android/javatests/',], | 1110 'additional_src_dirs': ['public/android/javatests/',], |
| 1106 'is_test_apk': 1, | 1111 'is_test_apk': 1, |
| 1107 }, | 1112 }, |
| 1108 'includes': [ '../build/java_apk.gypi' ], | 1113 'includes': [ '../build/java_apk.gypi' ], |
| 1109 }, | 1114 }, |
| 1110 ], | 1115 ], |
| 1111 }], | 1116 }], |
| 1112 ], | 1117 ], |
| 1113 } | 1118 } |
| OLD | NEW |