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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'jni_gen_package': 'content', | 569 'jni_gen_package': 'content', |
570 'input_java_class': 'android/view/MotionEvent.class', | 570 'input_java_class': 'android/view/MotionEvent.class', |
571 }, | 571 }, |
572 'includes': [ '../build/jar_file_jni_generator.gypi' ], | 572 'includes': [ '../build/jar_file_jni_generator.gypi' ], |
573 }, | 573 }, |
574 { | 574 { |
575 'target_name': 'content_jni_headers', | 575 'target_name': 'content_jni_headers', |
576 'type': 'none', | 576 'type': 'none', |
577 'dependencies': [ | 577 'dependencies': [ |
578 'java_set_jni_headers', | 578 'java_set_jni_headers', |
579 'motionevent_jni_headers' | 579 'motionevent_jni_headers', |
| 580 'cardboard_javalib', |
580 ], | 581 ], |
581 'includes': [ 'content_jni.gypi' ], | 582 'includes': [ 'content_jni.gypi' ], |
582 }, | 583 }, |
583 { | 584 { |
584 'target_name': 'content_icudata', | 585 'target_name': 'content_icudata', |
585 'type': 'none', | 586 'type': 'none', |
586 'conditions': [ | 587 'conditions': [ |
587 ['icu_use_data_file_flag==1', { | 588 ['icu_use_data_file_flag==1', { |
588 'copies': [ | 589 'copies': [ |
589 { | 590 { |
(...skipping 16 matching lines...) Expand all Loading... |
606 'destination': '<(PRODUCT_DIR)/content_shell/assets', | 607 'destination': '<(PRODUCT_DIR)/content_shell/assets', |
607 'files': [ | 608 'files': [ |
608 '<(PRODUCT_DIR)/natives_blob.bin', | 609 '<(PRODUCT_DIR)/natives_blob.bin', |
609 '<(PRODUCT_DIR)/snapshot_blob.bin', | 610 '<(PRODUCT_DIR)/snapshot_blob.bin', |
610 ], | 611 ], |
611 }, | 612 }, |
612 ], | 613 ], |
613 }], | 614 }], |
614 ], | 615 ], |
615 }, | 616 }, |
| 617 { |
| 618 'target_name': 'cardboard_javalib', |
| 619 'type': 'none', |
| 620 'variables': { |
| 621 'jar_path': '../third_party/cardboard/cardboard.jar', |
| 622 }, |
| 623 'includes': ['../build/java_prebuilt.gypi'], |
| 624 }, |
616 ], | 625 ], |
617 }], # OS == "android" | 626 }], # OS == "android" |
618 ], | 627 ], |
619 } | 628 } |
OLD | NEW |