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

Side by Side Diff: content/content_tests.gypi

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated to use Mojo as requested by eng review Created 5 years, 6 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 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 'dependencies': [ 1165 'dependencies': [
1166 '../ui/ozone/ozone.gyp:ozone', 1166 '../ui/ozone/ozone.gyp:ozone',
1167 '../ui/ozone/ozone.gyp:ozone_base', 1167 '../ui/ozone/ozone.gyp:ozone_base',
1168 ], 1168 ],
1169 }], 1169 }],
1170 ['OS == "mac" and use_openssl==1', { 1170 ['OS == "mac" and use_openssl==1', {
1171 'dependencies': [ 1171 'dependencies': [
1172 '../third_party/boringssl/boringssl.gyp:boringssl', 1172 '../third_party/boringssl/boringssl.gyp:boringssl',
1173 ], 1173 ],
1174 }], 1174 }],
1175 ['enable_webvr==1', {
1176 'sources': [
1177 'browser/vr/vr_device_manager_unittest.cc',
1178 'browser/vr/test/fake_vr_device.cc',
1179 'browser/vr/test/fake_vr_device.h',
1180 'browser/vr/test/fake_vr_device_provider.cc',
1181 'browser/vr/test/fake_vr_device_provider.h',
1182 ]
1183 }]
1175 ], 1184 ],
1176 }, 1185 },
1177 ], 1186 ],
1178 'conditions': [ 1187 'conditions': [
1179 ['test_isolation_mode != "noop"', { 1188 ['test_isolation_mode != "noop"', {
1180 'targets': [ 1189 'targets': [
1181 { 1190 {
1182 'target_name': 'content_browsertests_run', 1191 'target_name': 'content_browsertests_run',
1183 'type': 'none', 1192 'type': 'none',
1184 'dependencies': [ 1193 'dependencies': [
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
2152 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2161 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2153 }, 2162 },
2154 ], 2163 ],
2155 }], 2164 }],
2156 ], 2165 ],
2157 }, 2166 },
2158 ], 2167 ],
2159 }], 2168 }],
2160 ], 2169 ],
2161 } 2170 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698