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

Side by Side Diff: content/content_tests.gypi

Issue 1165523002: [Android] Refactor browser test execution. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add content/shell/android/browsertests/ to components/test/DEPS Created 5 years, 6 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 1795 matching lines...) Expand 10 before | Expand all | Expand 10 after
1806 'inputs': [ 1806 'inputs': [
1807 '<(PRODUCT_DIR)/natives_blob.bin', 1807 '<(PRODUCT_DIR)/natives_blob.bin',
1808 '<(PRODUCT_DIR)/snapshot_blob.bin', 1808 '<(PRODUCT_DIR)/snapshot_blob.bin',
1809 ], 1809 ],
1810 }], 1810 }],
1811 ], 1811 ],
1812 }, 1812 },
1813 'includes': [ '../build/apk_test.gypi' ], 1813 'includes': [ '../build/apk_test.gypi' ],
1814 }, 1814 },
1815 { 1815 {
1816 'target_name': 'content_shell_browsertests_java',
1817 'type': 'none',
1818 'dependencies': [
1819 'content.gyp:content_java',
1820 'content_shell_java',
1821 '../base/base.gyp:base_java',
1822 '../testing/android/native_test.gyp:native_test_java',
1823 '../ui/android/ui_android.gyp:ui_java',
1824 ],
1825 'variables': {
1826 'java_in_dir': 'shell/android/browsertests',
1827 },
1828 'includes': [ '../build/java.gypi' ],
1829 },
1830 {
1816 # TODO(GN) 1831 # TODO(GN)
1817 'target_name': 'content_browsertests_manifest', 1832 'target_name': 'content_browsertests_manifest',
1818 'type': 'none', 1833 'type': 'none',
1819 'variables': { 1834 'variables': {
1820 'jinja_inputs': ['shell/android/browsertests_apk/AndroidManifest.xml .jinja2'], 1835 'jinja_inputs': ['shell/android/browsertests_apk/AndroidManifest.xml .jinja2'],
1821 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/content_browsertests_man ifest/AndroidManifest.xml', 1836 'jinja_output': '<(SHARED_INTERMEDIATE_DIR)/content_browsertests_man ifest/AndroidManifest.xml',
1822 }, 1837 },
1823 'includes': [ '../build/android/jinja_template.gypi' ], 1838 'includes': [ '../build/android/jinja_template.gypi' ],
1824 }, 1839 },
1825 { 1840 {
1826 # TODO(GN) 1841 # TODO(GN)
1827 'target_name': 'content_browsertests_apk', 1842 'target_name': 'content_browsertests_apk',
1828 'type': 'none', 1843 'type': 'none',
1829 'dependencies': [ 1844 'dependencies': [
1830 'content.gyp:content_icudata', 1845 'content.gyp:content_icudata',
1831 'content.gyp:content_java', 1846 'content.gyp:content_java',
1832 'content.gyp:content_v8_external_data', 1847 'content.gyp:content_v8_external_data',
1833 'content_browsertests', 1848 'content_browsertests',
1849 'content_shell_browsertests_java',
1834 'content_java_test_support', 1850 'content_java_test_support',
1835 'content_shell_java', 1851 'content_shell_java',
1836 ], 1852 ],
1837 'variables': { 1853 'variables': {
1838 'test_suite_name': 'content_browsertests', 1854 'test_suite_name': 'content_browsertests',
1839 'isolate_file': 'content_browsertests.isolate', 1855 'isolate_file': 'content_browsertests.isolate',
1840 'java_in_dir': 'shell/android/browsertests_apk', 1856 'java_in_dir': 'shell/android/browsertests_apk',
1841 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/content_browser tests_manifest/AndroidManifest.xml', 1857 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/content_browser tests_manifest/AndroidManifest.xml',
1842 'resource_dir': 'shell/android/browsertests_apk/res', 1858 'resource_dir': 'shell/android/browsertests_apk/res',
1843 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1859 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
2187 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2203 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2188 }, 2204 },
2189 ], 2205 ],
2190 }], 2206 }],
2191 ], 2207 ],
2192 }, 2208 },
2193 ], 2209 ],
2194 }], 2210 }],
2195 ], 2211 ],
2196 } 2212 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698