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

Side by Side Diff: content/content_tests.gypi

Issue 10830171: Fix missing dependency on java inputs for ContentShellTest.apk. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | « no previous file | 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 'action_name': 'copy_content_javatests_jar', 808 'action_name': 'copy_content_javatests_jar',
809 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content_javatests.jar '], 809 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content_javatests.jar '],
810 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_ content_javatests.jar'], 810 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_ content_javatests.jar'],
811 'action': ['cp', '<@(_inputs)', '<@(_outputs)'], 811 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
812 }, 812 },
813 { 813 {
814 'action_name': 'content_shell_test_generate_apk', 814 'action_name': 'content_shell_test_generate_apk',
815 'inputs': [ 815 'inputs': [
816 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 816 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
817 '<(DEPTH)/content/shell/android/javatests/AndroidManifest.xml', 817 '<(DEPTH)/content/shell/android/javatests/AndroidManifest.xml',
818 '<!@(find <(DEPTH)/content/shell/android/javatests/ -name "*.jav a")'
818 ], 819 ],
819 'outputs': [ 820 'outputs': [
820 '<(PRODUCT_DIR)/content_shell_test/ContentShellTest-debug.apk', 821 '<(PRODUCT_DIR)/content_shell_test/ContentShellTest-debug.apk',
821 ], 822 ],
822 'action': [ 823 'action': [
823 'ant', 824 'ant',
824 '-DPRODUCT_DIR=<(ant_build_out)', 825 '-DPRODUCT_DIR=<(ant_build_out)',
825 '-DAPP_ABI=<(android_app_abi)', 826 '-DAPP_ABI=<(android_app_abi)',
826 '-buildfile', 827 '-buildfile',
827 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 828 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
828 ] 829 ]
829 } 830 }
830 ], 831 ],
831 }, 832 },
832 ], 833 ],
833 }], 834 }],
834 ], 835 ],
835 } 836 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698