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