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

Side by Side Diff: content/content.gyp

Issue 755403006: Added experimental Touch.tilt, Touch.tiltDirection support for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added EventSender.SetTouchPointTilt() for tests Created 5 years, 10 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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 'jni_gen_package': 'content', 558 'jni_gen_package': 'content',
559 'input_java_class': 'android/view/MotionEvent.class', 559 'input_java_class': 'android/view/MotionEvent.class',
560 }, 560 },
561 'includes': [ '../build/jar_file_jni_generator.gypi' ], 561 'includes': [ '../build/jar_file_jni_generator.gypi' ],
562 }, 562 },
563 { 563 {
564 'target_name': 'content_jni_headers', 564 'target_name': 'content_jni_headers',
565 'type': 'none', 565 'type': 'none',
566 'dependencies': [ 566 'dependencies': [
567 'java_set_jni_headers', 567 'java_set_jni_headers',
568 'motionevent_jni_headers' 568 'motionevent_jni_headers',
569 ], 569 ],
570 'includes': [ 'content_jni.gypi' ], 570 'includes': [ 'content_jni.gypi' ],
571 }, 571 },
572 { 572 {
573 'target_name': 'content_icudata', 573 'target_name': 'content_icudata',
574 'type': 'none', 574 'type': 'none',
575 'conditions': [ 575 'conditions': [
576 ['icu_use_data_file_flag==1', { 576 ['icu_use_data_file_flag==1', {
577 'copies': [ 577 'copies': [
578 { 578 {
(...skipping 20 matching lines...) Expand all
599 ], 599 ],
600 }, 600 },
601 ], 601 ],
602 }], 602 }],
603 ], 603 ],
604 }, 604 },
605 ], 605 ],
606 }], # OS == "android" 606 }], # OS == "android"
607 ], 607 ],
608 } 608 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698