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

Side by Side Diff: content/content.gyp

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) 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 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' ,
10 }, 10 },
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 'jni_gen_package': 'content', 577 'jni_gen_package': 'content',
578 'input_java_class': 'android/view/MotionEvent.class', 578 'input_java_class': 'android/view/MotionEvent.class',
579 }, 579 },
580 'includes': [ '../build/jar_file_jni_generator.gypi' ], 580 'includes': [ '../build/jar_file_jni_generator.gypi' ],
581 }, 581 },
582 { 582 {
583 'target_name': 'content_jni_headers', 583 'target_name': 'content_jni_headers',
584 'type': 'none', 584 'type': 'none',
585 'dependencies': [ 585 'dependencies': [
586 'java_set_jni_headers', 586 'java_set_jni_headers',
587 'motionevent_jni_headers' 587 'motionevent_jni_headers',
588 ], 588 ],
589 'includes': [ 'content_jni.gypi' ], 589 'includes': [ 'content_jni.gypi' ],
590 'conditions': [
591 ['enable_webvr==1', {
592 'sources': [
593 'public/android/java/src/org/chromium/content/browser/input/Card boardVRDevice.java',
594 ],
595 'dependencies': [
596 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar',
597 ],
598 }],
599 ],
590 }, 600 },
591 { 601 {
592 'target_name': 'content_icudata', 602 'target_name': 'content_icudata',
593 'type': 'none', 603 'type': 'none',
594 'conditions': [ 604 'conditions': [
595 ['icu_use_data_file_flag==1', { 605 ['icu_use_data_file_flag==1', {
596 'copies': [ 606 'copies': [
597 { 607 {
598 'destination': '<(PRODUCT_DIR)/content_shell/assets', 608 'destination': '<(PRODUCT_DIR)/content_shell/assets',
599 'files': [ 609 'files': [
(...skipping 18 matching lines...) Expand all
618 ], 628 ],
619 }, 629 },
620 ], 630 ],
621 }], 631 }],
622 ], 632 ],
623 }, 633 },
624 ], 634 ],
625 }], # OS == "android" 635 }], # OS == "android"
626 ], 636 ],
627 } 637 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698