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

Side by Side Diff: content/content.gyp

Issue 1246823003: Provide an accessibility tree snapshot (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address code review Created 5 years, 5 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 'invalidate_types_java', 453 'invalidate_types_java',
454 'navigation_controller_java', 454 'navigation_controller_java',
455 'popup_item_type_java', 455 'popup_item_type_java',
456 'result_codes_java', 456 'result_codes_java',
457 'readback_response_java', 457 'readback_response_java',
458 'speech_recognition_error_java', 458 'speech_recognition_error_java',
459 'top_controls_state_java', 459 'top_controls_state_java',
460 'screen_orientation_values_java', 460 'screen_orientation_values_java',
461 'accessibility_java', 461 'accessibility_java',
462 ], 462 ],
463 # TODO(sgurun) remove this when M is public. crbug/512264.
464 'conditions': [
465 ['android_sdk_version != "M"', {
466 'dependencies': [
467 '../third_party/android_tools/android_tools.gyp:preview_java_sou rces',
468 ],
469 }],
470 ],
463 'variables': { 471 'variables': {
464 'java_in_dir': '../content/public/android/java', 472 'java_in_dir': '../content/public/android/java',
465 'has_java_resources': 1, 473 'has_java_resources': 1,
466 'R_package': 'org.chromium.content', 474 'R_package': 'org.chromium.content',
467 'R_package_relpath': 'org/chromium/content', 475 'R_package_relpath': 'org/chromium/content',
468 }, 476 },
469 'includes': [ '../build/java.gypi' ], 477 'includes': [ '../build/java.gypi' ],
470 }, 478 },
471 { 479 {
472 'target_name': 'console_message_level_java', 480 'target_name': 'console_message_level_java',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 ], 641 ],
634 }, 642 },
635 ], 643 ],
636 }], 644 }],
637 ], 645 ],
638 }, 646 },
639 ], 647 ],
640 }], # OS == "android" 648 }], # OS == "android"
641 ], 649 ],
642 } 650 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698