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

Side by Side Diff: content/content.gyp

Issue 2219203002: Migrate WebVR Cardboard implementation to GVR (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gvr_third_party
Patch Set: Disabling WebVR on non-component builds Created 4 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) 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 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine.
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 }, 682 },
683 'includes': [ '../build/jar_file_jni_generator.gypi' ], 683 'includes': [ '../build/jar_file_jni_generator.gypi' ],
684 }, 684 },
685 { 685 {
686 'target_name': 'content_jni_headers', 686 'target_name': 'content_jni_headers',
687 'type': 'none', 687 'type': 'none',
688 'dependencies': [ 688 'dependencies': [
689 'java_set_jni_headers', 689 'java_set_jni_headers',
690 ], 690 ],
691 'includes': [ 'content_jni.gypi' ], 691 'includes': [ 'content_jni.gypi' ],
692 'conditions': [
693 ['enable_webvr==1', {
694 'sources': [
695 'public/android/java/src/org/chromium/content/browser/input/Card boardVRDevice.java',
696 ],
697 'dependencies': [
698 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar',
699 ],
700 }],
701 ],
702 }, 692 },
703 { 693 {
704 'target_name': 'content_shell_assets_copy', 694 'target_name': 'content_shell_assets_copy',
705 'type': 'none', 695 'type': 'none',
706 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'], 696 'dependencies': ['content_shell_and_tests.gyp:content_shell_pak'],
707 'variables': { 697 'variables': {
708 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'], 698 'src_files': ['<(PRODUCT_DIR)/content_shell.pak'],
709 'conditions': [ 699 'conditions': [
710 ['v8_use_external_startup_data==1', { 700 ['v8_use_external_startup_data==1', {
711 'dependencies': ['<(DEPTH)/v8/src/v8.gyp:v8_external_snapshot'], 701 'dependencies': ['<(DEPTH)/v8/src/v8.gyp:v8_external_snapshot'],
(...skipping 16 matching lines...) Expand all
728 }, 718 },
729 'includes': [ 719 'includes': [
730 '../build/android/copy_ex.gypi', 720 '../build/android/copy_ex.gypi',
731 '../build/android/v8_external_startup_data_arch_suffix.gypi', 721 '../build/android/v8_external_startup_data_arch_suffix.gypi',
732 ], 722 ],
733 }, 723 },
734 ], 724 ],
735 }], # OS == "android" 725 }], # OS == "android"
736 ], 726 ],
737 } 727 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698