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

Side by Side Diff: content/content.gyp

Issue 196193002: Implement ScreenOrientationProvider for Chrome Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
10 }, 10 },
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 '../net/net.gyp:net', 412 '../net/net.gyp:net',
413 '../ui/android/ui_android.gyp:ui_java', 413 '../ui/android/ui_android.gyp:ui_java',
414 'common_aidl', 414 'common_aidl',
415 'content_common', 415 'content_common',
416 'gesture_event_type_java', 416 'gesture_event_type_java',
417 'page_transition_types_java', 417 'page_transition_types_java',
418 'popup_item_type_java', 418 'popup_item_type_java',
419 'result_codes_java', 419 'result_codes_java',
420 'speech_recognition_error_java', 420 'speech_recognition_error_java',
421 'top_controls_state_java', 421 'top_controls_state_java',
422 'screen_orientation_values_java',
422 ], 423 ],
423 'variables': { 424 'variables': {
424 'java_in_dir': '../content/public/android/java', 425 'java_in_dir': '../content/public/android/java',
425 'has_java_resources': 1, 426 'has_java_resources': 1,
426 'R_package': 'org.chromium.content', 427 'R_package': 'org.chromium.content',
427 'R_package_relpath': 'org/chromium/content', 428 'R_package_relpath': 'org/chromium/content',
428 'java_strings_grd': 'android_content_strings.grd', 429 'java_strings_grd': 'android_content_strings.grd',
429 }, 430 },
430 'conditions': [ 431 'conditions': [
431 ['android_webview_build == 0', { 432 ['android_webview_build == 0', {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 'sources': [ 504 'sources': [
504 'public/android/java/src/org/chromium/content/common/TopControlsStat e.template', 505 'public/android/java/src/org/chromium/content/common/TopControlsStat e.template',
505 ], 506 ],
506 'variables': { 507 'variables': {
507 'package_name': 'org/chromium/content/common', 508 'package_name': 'org/chromium/content/common',
508 'template_deps': ['public/common/top_controls_state_list.h'], 509 'template_deps': ['public/common/top_controls_state_list.h'],
509 }, 510 },
510 'includes': [ '../build/android/java_cpp_template.gypi' ], 511 'includes': [ '../build/android/java_cpp_template.gypi' ],
511 }, 512 },
512 { 513 {
514 'target_name': 'screen_orientation_values_java',
515 'type': 'none',
516 'sources': [
517 'public/android/java/src/org/chromium/content/common/ScreenOrientati onValues.template',
518 ],
519 'variables': {
520 'package_name': 'org/chromium/content/common',
521 'template_deps': ['public/common/screen_orientation_values_list.h'],
522 },
523 'includes': [ '../build/android/java_cpp_template.gypi' ],
524 },
525 {
513 'target_name': 'java_set_jni_headers', 526 'target_name': 'java_set_jni_headers',
514 'type': 'none', 527 'type': 'none',
515 'variables': { 528 'variables': {
516 'jni_gen_package': 'content', 529 'jni_gen_package': 'content',
517 'input_java_class': 'java/util/HashSet.class', 530 'input_java_class': 'java/util/HashSet.class',
518 }, 531 },
519 'includes': [ '../build/jar_file_jni_generator.gypi' ], 532 'includes': [ '../build/jar_file_jni_generator.gypi' ],
520 }, 533 },
521 { 534 {
522 'target_name': 'motionevent_jni_headers', 535 'target_name': 'motionevent_jni_headers',
(...skipping 27 matching lines...) Expand all
550 ], 563 ],
551 }, 564 },
552 ], 565 ],
553 }], 566 }],
554 ], 567 ],
555 }, 568 },
556 ], 569 ],
557 }], # OS == "android" 570 }], # OS == "android"
558 ], 571 ],
559 } 572 }
OLDNEW
« no previous file with comments | « content/browser/screen_orientation/screen_orientation_provider_android.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698