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

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: Addressed rockot@'s feedback. 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 1172 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 'dependencies': [ 1183 'dependencies': [
1184 '../ui/ozone/ozone.gyp:ozone', 1184 '../ui/ozone/ozone.gyp:ozone',
1185 '../ui/ozone/ozone.gyp:ozone_base', 1185 '../ui/ozone/ozone.gyp:ozone_base',
1186 ], 1186 ],
1187 }], 1187 }],
1188 ['OS == "mac" and use_openssl==1', { 1188 ['OS == "mac" and use_openssl==1', {
1189 'dependencies': [ 1189 'dependencies': [
1190 '../third_party/boringssl/boringssl.gyp:boringssl', 1190 '../third_party/boringssl/boringssl.gyp:boringssl',
1191 ], 1191 ],
1192 }], 1192 }],
1193 ['enable_webvr==1', {
1194 'sources': [
1195 'browser/vr/vr_device_manager_unittest.cc',
1196 'browser/vr/test/fake_vr_device.cc',
1197 'browser/vr/test/fake_vr_device.h',
1198 'browser/vr/test/fake_vr_device_provider.cc',
1199 'browser/vr/test/fake_vr_device_provider.h',
1200 ]
1201 }]
1193 ], 1202 ],
1194 }, 1203 },
1195 ], 1204 ],
1196 'conditions': [ 1205 'conditions': [
1197 ['test_isolation_mode != "noop"', { 1206 ['test_isolation_mode != "noop"', {
1198 'targets': [ 1207 'targets': [
1199 { 1208 {
1200 'target_name': 'content_browsertests_run', 1209 'target_name': 'content_browsertests_run',
1201 'type': 'none', 1210 'type': 'none',
1202 'dependencies': [ 1211 'dependencies': [
(...skipping 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after
2204 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2213 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2205 }, 2214 },
2206 ], 2215 ],
2207 }], 2216 }],
2208 ], 2217 ],
2209 }, 2218 },
2210 ], 2219 ],
2211 }], 2220 }],
2212 ], 2221 ],
2213 } 2222 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698