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

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 12638003: Replace hand-written JNI in fling_animator with generated bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/fling_animator_impl_android.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 465 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
466 ], 466 ],
467 }], 467 }],
468 ], 468 ],
469 }], 469 }],
470 ['inside_chromium_build==0', { 470 ['inside_chromium_build==0', {
471 'dependencies': [ 471 'dependencies': [
472 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', 472 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
473 ], 473 ],
474 }], 474 }],
475 ['OS=="android"', {
476 'dependencies': [
477 'overscroller_jni_headers',
478 ],
479 }],
480
475 ], 481 ],
476 }, 482 },
477 ], 483 ],
478 'conditions': [ 484 'conditions': [
479 ['use_third_party_translations==1', { 485 ['use_third_party_translations==1', {
480 'targets': [ 486 'targets': [
481 { 487 {
482 'target_name': 'inspector_strings', 488 'target_name': 'inspector_strings',
483 'type': 'none', 489 'type': 'none',
484 'variables': { 490 'variables': {
485 'grit_out_dir': '<(PRODUCT_DIR)/resources/inspector/l10n', 491 'grit_out_dir': '<(PRODUCT_DIR)/resources/inspector/l10n',
486 }, 492 },
487 'actions': [ 493 'actions': [
488 { 494 {
489 'action_name': 'inspector_strings', 495 'action_name': 'inspector_strings',
490 'variables': { 496 'variables': {
491 'grit_grd_file': 'inspector_strings.grd', 497 'grit_grd_file': 'inspector_strings.grd',
492 }, 498 },
493 'includes': [ '../../build/grit_action.gypi' ], 499 'includes': [ '../../build/grit_action.gypi' ],
494 }, 500 },
495 ], 501 ],
496 'includes': [ '../../build/grit_target.gypi' ], 502 'includes': [ '../../build/grit_target.gypi' ],
497 }, 503 },
498 ], 504 ],
499 }], 505 }],
506 ['OS=="android"', {
507 'targets': [
508 {
509 'target_name': 'overscroller_jni_headers',
510 'type': 'none',
511 'variables': {
512 'jni_gen_package': 'webkit',
513 'input_java_class': 'android/widget/OverScroller.class',
514 'input_jar_file': '<(android_sdk)/android.jar',
515 },
516 'includes': [ '../../build/jar_file_jni_generator.gypi' ],
517 },
518 ],
519 }],
500 ], 520 ],
501 } 521 }
OLDNEW
« no previous file with comments | « webkit/glue/fling_animator_impl_android.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698