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

Side by Side Diff: content/content_shell.gypi

Issue 10818039: Upstream Android LongPressDetector (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Target rename base_javatests->base_java_test_support Created 8 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 | Annotate | Revision Log
« no previous file with comments | « base/base.gyp ('k') | content/content_tests.gypi » ('j') | 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 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 'ant', 626 'ant',
627 '-DPRODUCT_DIR=<(ant_build_out)', 627 '-DPRODUCT_DIR=<(ant_build_out)',
628 '-DAPP_ABI=<(android_app_abi)', 628 '-DAPP_ABI=<(android_app_abi)',
629 '-buildfile', 629 '-buildfile',
630 'shell/android/java/content_shell_apk.xml', 630 'shell/android/java/content_shell_apk.xml',
631 '<(CONFIGURATION_NAME)', 631 '<(CONFIGURATION_NAME)',
632 ] 632 ]
633 } 633 }
634 ], 634 ],
635 }, 635 },
636 {
637 'target_name': 'content_shell_test_apk',
638 'type': 'none',
639 'dependencies': [
640 'content_shell_apk',
641 ],
642 'actions': [
643 {
644 'action_name': 'content_shell_test_generate_apk',
645 'inputs': [
646 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
647 '<(DEPTH)/content/shell/android/javatests/AndroidManifest.xml',
648 ],
649 'outputs': [
650 '<(PRODUCT_DIR)/content_shell_test/ContentShellTest-debug.apk',
651 ],
652 'action': [
653 'ant',
654 '-DPRODUCT_DIR=<(ant_build_out)',
655 '-DAPP_ABI=<(android_app_abi)',
656 '-buildfile',
657 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
658 ]
659 }
660 ],
661 },
662 ], 636 ],
663 }], # OS=="android" 637 }], # OS=="android"
664 ] 638 ]
665 } 639 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698