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 '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 Loading... |
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 } |
OLD | NEW |