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

Side by Side Diff: content/content_tests.gypi

Issue 1200303002: Android WebVR implementation, Cardboard 0.5.5 SDK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build dependencies Created 5 years, 4 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) 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 'variables': { 6 'variables': {
7 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 ], 754 ],
755 'content_unittests_android_sources': [ 755 'content_unittests_android_sources': [
756 'browser/android/java/gin_java_method_invocation_helper_unittest.cc', 756 'browser/android/java/gin_java_method_invocation_helper_unittest.cc',
757 'browser/android/java/java_type_unittest.cc', 757 'browser/android/java/java_type_unittest.cc',
758 'browser/android/java/jni_helper_unittest.cc', 758 'browser/android/java/jni_helper_unittest.cc',
759 'browser/android/overscroll_refresh_unittest.cc', 759 'browser/android/overscroll_refresh_unittest.cc',
760 'browser/android/url_request_content_job_unittest.cc', 760 'browser/android/url_request_content_job_unittest.cc',
761 'browser/renderer_host/input/motion_event_android_unittest.cc', 761 'browser/renderer_host/input/motion_event_android_unittest.cc',
762 'renderer/java/gin_java_bridge_value_converter_unittest.cc', 762 'renderer/java/gin_java_bridge_value_converter_unittest.cc',
763 ], 763 ],
764 'content_unittests_webvr_sources': [
765 'browser/vr/vr_transform_util_unittest.cc',
766 ],
764 }, 767 },
765 'targets': [ 768 'targets': [
766 { 769 {
767 # GN version: //content/test:layouttest_support 770 # GN version: //content/test:layouttest_support
768 'target_name': 'layouttest_support_content', 771 'target_name': 'layouttest_support_content',
769 'type': 'static_library', 772 'type': 'static_library',
770 'conditions': [ 773 'conditions': [
771 ['OS=="android"', { 774 ['OS=="android"', {
772 'dependencies': [ 775 'dependencies': [
773 'test_support_content_jni_headers', 776 'test_support_content_jni_headers',
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 'dependencies': [ 1189 'dependencies': [
1187 '../ui/ozone/ozone.gyp:ozone', 1190 '../ui/ozone/ozone.gyp:ozone',
1188 '../ui/ozone/ozone.gyp:ozone_base', 1191 '../ui/ozone/ozone.gyp:ozone_base',
1189 ], 1192 ],
1190 }], 1193 }],
1191 ['OS == "mac" and use_openssl==1', { 1194 ['OS == "mac" and use_openssl==1', {
1192 'dependencies': [ 1195 'dependencies': [
1193 '../third_party/boringssl/boringssl.gyp:boringssl', 1196 '../third_party/boringssl/boringssl.gyp:boringssl',
1194 ], 1197 ],
1195 }], 1198 }],
1199 ['enable_webvr==1', {
1200 'sources': [ '<@(content_unittests_webvr_sources)' ],
1201 }],
1196 ], 1202 ],
1197 }, 1203 },
1198 ], 1204 ],
1199 'conditions': [ 1205 'conditions': [
1200 ['test_isolation_mode != "noop"', { 1206 ['test_isolation_mode != "noop"', {
1201 'targets': [ 1207 'targets': [
1202 { 1208 {
1203 'target_name': 'content_browsertests_run', 1209 'target_name': 'content_browsertests_run',
1204 'type': 'none', 1210 'type': 'none',
1205 'dependencies': [ 1211 'dependencies': [
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after
2102 ], 2108 ],
2103 }, 2109 },
2104 'includes': [ 2110 'includes': [
2105 '../build/host_jar.gypi', 2111 '../build/host_jar.gypi',
2106 ], 2112 ],
2107 }, 2113 },
2108 ], 2114 ],
2109 }], 2115 }],
2110 ], 2116 ],
2111 } 2117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698