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

Side by Side Diff: content/content_tests.gypi

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

Powered by Google App Engine
This is Rietveld 408576698