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

Side by Side Diff: content/content_renderer.gypi

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using std::unique_ptr and using [Sync] mojo call! Created 4 years, 7 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) 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations', 8 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations',
9 '../cc/cc.gyp:cc', 9 '../cc/cc.gyp:cc',
10 '../cc/cc.gyp:cc_proto', 10 '../cc/cc.gyp:cc_proto',
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 'sources': [ 899 'sources': [
900 'renderer/media/cdm/proxy_media_keys.cc', 900 'renderer/media/cdm/proxy_media_keys.cc',
901 'renderer/media/cdm/proxy_media_keys.h', 901 'renderer/media/cdm/proxy_media_keys.h',
902 'renderer/media/cdm/renderer_cdm_manager.cc', 902 'renderer/media/cdm/renderer_cdm_manager.cc',
903 'renderer/media/cdm/renderer_cdm_manager.h', 903 'renderer/media/cdm/renderer_cdm_manager.h',
904 ], 904 ],
905 }], 905 }],
906 ['use_seccomp_bpf==1', { 906 ['use_seccomp_bpf==1', {
907 'defines': ['USE_SECCOMP_BPF'], 907 'defines': ['USE_SECCOMP_BPF'],
908 }], 908 }],
909 ['enable_webvr==1', {
910 'sources': [
911 'renderer/vr/vr_dispatcher.cc',
912 'renderer/vr/vr_dispatcher.h',
913 'renderer/vr/vr_type_converters.cc',
914 'renderer/vr/vr_type_converters.h',
915 ]
916 }],
917 ], 909 ],
918 'target_conditions': [ 910 'target_conditions': [
919 ['OS=="android"', { 911 ['OS=="android"', {
920 'sources/': [ 912 'sources/': [
921 ['include', '^renderer/render_view_linux\\.cc$'], 913 ['include', '^renderer/render_view_linux\\.cc$'],
922 ], 914 ],
923 }], 915 }],
924 ], 916 ],
925 } 917 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698