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

Side by Side Diff: content/content_tests.gypi

Issue 10830287: Adding AndroidProxySelectorTest to ContentShell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing Chris' nit 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
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 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 'java_in_dir': '../content/public/android/javatests', 790 'java_in_dir': '../content/public/android/javatests',
791 }, 791 },
792 'includes': [ '../build/java.gypi' ], 792 'includes': [ '../build/java.gypi' ],
793 }, 793 },
794 { 794 {
795 'target_name': 'content_shell_test_apk', 795 'target_name': 'content_shell_test_apk',
796 'type': 'none', 796 'type': 'none',
797 'dependencies': [ 797 'dependencies': [
798 'content_shell_apk', 798 'content_shell_apk',
799 'content_javatests', 799 'content_javatests',
800 '../net/net.gyp:net_javatests',
800 '../tools/android/forwarder/forwarder.gyp:forwarder', 801 '../tools/android/forwarder/forwarder.gyp:forwarder',
801 ], 802 ],
802 'actions': [ 803 'actions': [
803 { 804 {
804 'action_name': 'copy_base_javatests_jar', 805 'action_name': 'copy_base_javatests_jar',
805 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_base_javatests.jar'], 806 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_base_javatests.jar'],
806 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_ base_javatests.jar'], 807 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_ base_javatests.jar'],
807 'action': ['cp', '<@(_inputs)', '<@(_outputs)'], 808 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
808 }, 809 },
809 { 810 {
811 'action_name': 'copy_net_javatests_jar',
812 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_net_javatests.jar'],
813 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_ net_javatests.jar'],
814 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
piman 2012/08/15 01:19:18 FYI, you can use copies, see http://code.google.co
aurimas (slooooooooow) 2012/08/15 18:18:31 Done.
815 },
816 {
810 'action_name': 'copy_content_javatests_jar', 817 'action_name': 'copy_content_javatests_jar',
811 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content_javatests.jar '], 818 'inputs': ['<(PRODUCT_DIR)/lib.java/chromium_content_javatests.jar '],
812 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_ content_javatests.jar'], 819 'outputs': ['<(PRODUCT_DIR)/content_shell_test/java/libs/chromium_ content_javatests.jar'],
813 'action': ['cp', '<@(_inputs)', '<@(_outputs)'], 820 'action': ['cp', '<@(_inputs)', '<@(_outputs)'],
814 }, 821 },
815 { 822 {
816 'action_name': 'content_shell_test_generate_apk', 823 'action_name': 'content_shell_test_generate_apk',
817 'inputs': [ 824 'inputs': [
818 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 825 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
819 '<(DEPTH)/content/shell/android/javatests/AndroidManifest.xml', 826 '<(DEPTH)/content/shell/android/javatests/AndroidManifest.xml',
(...skipping 14 matching lines...) Expand all
834 '-buildfile', 841 '-buildfile',
835 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml', 842 '<(DEPTH)/content/shell/android/javatests/content_shell_test_apk .xml',
836 ] 843 ]
837 } 844 }
838 ], 845 ],
839 }, 846 },
840 ], 847 ],
841 }], 848 }],
842 ], 849 ],
843 } 850 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698