OLD | NEW |
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 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 { | 595 { |
596 'target_name': 'java_set_jni_headers', | 596 'target_name': 'java_set_jni_headers', |
597 'type': 'none', | 597 'type': 'none', |
598 'variables': { | 598 'variables': { |
599 'jni_gen_package': 'content', | 599 'jni_gen_package': 'content', |
600 'input_java_class': 'java/util/HashSet.class', | 600 'input_java_class': 'java/util/HashSet.class', |
601 }, | 601 }, |
602 'includes': [ '../build/jar_file_jni_generator.gypi' ], | 602 'includes': [ '../build/jar_file_jni_generator.gypi' ], |
603 }, | 603 }, |
604 { | 604 { |
605 'target_name': 'motionevent_jni_headers', | |
606 'type': 'none', | |
607 'variables': { | |
608 'jni_gen_package': 'content', | |
609 'input_java_class': 'android/view/MotionEvent.class', | |
610 }, | |
611 'includes': [ '../build/jar_file_jni_generator.gypi' ], | |
612 }, | |
613 { | |
614 'target_name': 'content_jni_headers', | 605 'target_name': 'content_jni_headers', |
615 'type': 'none', | 606 'type': 'none', |
616 'dependencies': [ | 607 'dependencies': [ |
617 'java_set_jni_headers', | 608 'java_set_jni_headers', |
618 'motionevent_jni_headers' | |
619 ], | 609 ], |
620 'includes': [ 'content_jni.gypi' ], | 610 'includes': [ 'content_jni.gypi' ], |
621 'conditions': [ | 611 'conditions': [ |
622 ['enable_webvr==1', { | 612 ['enable_webvr==1', { |
623 'sources': [ | 613 'sources': [ |
624 'public/android/java/src/org/chromium/content/browser/input/Card
boardVRDevice.java', | 614 'public/android/java/src/org/chromium/content/browser/input/Card
boardVRDevice.java', |
625 ], | 615 ], |
626 'dependencies': [ | 616 'dependencies': [ |
627 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar', | 617 '../third_party/cardboard-java/cardboard.gyp:cardboard_jar', |
628 ], | 618 ], |
(...skipping 30 matching lines...) Expand all Loading... |
659 ], | 649 ], |
660 }, | 650 }, |
661 ], | 651 ], |
662 }], | 652 }], |
663 ], | 653 ], |
664 }, | 654 }, |
665 ], | 655 ], |
666 }], # OS == "android" | 656 }], # OS == "android" |
667 ], | 657 ], |
668 } | 658 } |
OLD | NEW |