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

Side by Side Diff: content/content_tests.gypi

Issue 1120883002: [Android] Generate scripts at build time to run android tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed datadeps to data_deps to reflect recent change. 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
« no previous file with comments | « components/components_tests.gyp ('k') | content/shell/android/BUILD.gn » ('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) 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 1747 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 'files': [ 1758 'files': [
1759 '<(PRODUCT_DIR)/natives_blob.bin', 1759 '<(PRODUCT_DIR)/natives_blob.bin',
1760 '<(PRODUCT_DIR)/snapshot_blob.bin', 1760 '<(PRODUCT_DIR)/snapshot_blob.bin',
1761 ], 1761 ],
1762 }, 1762 },
1763 ], 1763 ],
1764 }], 1764 }],
1765 ], 1765 ],
1766 'variables': { 1766 'variables': {
1767 'test_suite_name': 'content_unittests', 1767 'test_suite_name': 'content_unittests',
1768 'isolate_file': 'content_unittests.isolate',
1768 'conditions': [ 1769 'conditions': [
1769 ['v8_use_external_startup_data==1', { 1770 ['v8_use_external_startup_data==1', {
1770 'asset_location': '<(PRODUCT_DIR)/content_unittests_apk/assets', 1771 'asset_location': '<(PRODUCT_DIR)/content_unittests_apk/assets',
1771 'additional_input_paths': [ 1772 'additional_input_paths': [
1772 '<(PRODUCT_DIR)/content_unittests_apk/assets/natives_blob.bin' , 1773 '<(PRODUCT_DIR)/content_unittests_apk/assets/natives_blob.bin' ,
1773 '<(PRODUCT_DIR)/content_unittests_apk/assets/snapshot_blob.bin ', 1774 '<(PRODUCT_DIR)/content_unittests_apk/assets/snapshot_blob.bin ',
1774 ], 1775 ],
1775 'inputs': [ 1776 'inputs': [
1776 '<(PRODUCT_DIR)/natives_blob.bin', 1777 '<(PRODUCT_DIR)/natives_blob.bin',
1777 '<(PRODUCT_DIR)/snapshot_blob.bin', 1778 '<(PRODUCT_DIR)/snapshot_blob.bin',
(...skipping 20 matching lines...) Expand all
1798 'dependencies': [ 1799 'dependencies': [
1799 'content.gyp:content_icudata', 1800 'content.gyp:content_icudata',
1800 'content.gyp:content_java', 1801 'content.gyp:content_java',
1801 'content.gyp:content_v8_external_data', 1802 'content.gyp:content_v8_external_data',
1802 'content_browsertests', 1803 'content_browsertests',
1803 'content_java_test_support', 1804 'content_java_test_support',
1804 'content_shell_java', 1805 'content_shell_java',
1805 ], 1806 ],
1806 'variables': { 1807 'variables': {
1807 'test_suite_name': 'content_browsertests', 1808 'test_suite_name': 'content_browsertests',
1809 'isolate_file': 'content_browsertests.isolate',
1808 'java_in_dir': 'shell/android/browsertests_apk', 1810 'java_in_dir': 'shell/android/browsertests_apk',
1809 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/content_browser tests_manifest/AndroidManifest.xml', 1811 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/content_browser tests_manifest/AndroidManifest.xml',
1810 'resource_dir': 'shell/android/browsertests_apk/res', 1812 'resource_dir': 'shell/android/browsertests_apk/res',
1811 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1813 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1812 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1814 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1813 'conditions': [ 1815 'conditions': [
1814 ['icu_use_data_file_flag==1', { 1816 ['icu_use_data_file_flag==1', {
1815 'additional_input_paths': [ 1817 'additional_input_paths': [
1816 '<(PRODUCT_DIR)/icudtl.dat', 1818 '<(PRODUCT_DIR)/icudtl.dat',
1817 ], 1819 ],
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
1979 '../testing/android/on_device_instrumentation.gyp:broker_java', 1981 '../testing/android/on_device_instrumentation.gyp:broker_java',
1980 '../testing/android/on_device_instrumentation.gyp:require_driver_apk ', 1982 '../testing/android/on_device_instrumentation.gyp:require_driver_apk ',
1981 '../third_party/mojo/mojo_public.gyp:mojo_public_test_interfaces', 1983 '../third_party/mojo/mojo_public.gyp:mojo_public_test_interfaces',
1982 ], 1984 ],
1983 'variables': { 1985 'variables': {
1984 'apk_name': 'ContentShellTest', 1986 'apk_name': 'ContentShellTest',
1985 'java_in_dir': 'shell/android/javatests', 1987 'java_in_dir': 'shell/android/javatests',
1986 'resource_dir': 'shell/android/shell_apk/res', 1988 'resource_dir': 'shell/android/shell_apk/res',
1987 'additional_src_dirs': ['public/android/javatests/', ], 1989 'additional_src_dirs': ['public/android/javatests/', ],
1988 'is_test_apk': 1, 1990 'is_test_apk': 1,
1991 'test_type': 'instrumentation',
1992 'isolate_file': 'content_shell_test_apk.isolate',
1989 }, 1993 },
1990 'includes': [ '../build/java_apk.gypi' ], 1994 'includes': [
1995 '../build/java_apk.gypi',
1996 '../build/android/test_runner.gypi',
1997 ],
1991 }, 1998 },
1992 { 1999 {
1993 # GN: //content/public/android:content_junit_tests 2000 # GN: //content/public/android:content_junit_tests
1994 'target_name': 'content_junit_tests', 2001 'target_name': 'content_junit_tests',
1995 'type': 'none', 2002 'type': 'none',
1996 'dependencies': [ 2003 'dependencies': [
1997 'content.gyp:content_java', 2004 'content.gyp:content_java',
1998 '../base/base.gyp:base_java', 2005 '../base/base.gyp:base_java',
1999 '../base/base.gyp:base_java_test_support', 2006 '../base/base.gyp:base_java_test_support',
2000 '../testing/android/junit/junit_test.gyp:junit_test_support', 2007 '../testing/android/junit/junit_test.gyp:junit_test_support',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
2150 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2157 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2151 }, 2158 },
2152 ], 2159 ],
2153 }], 2160 }],
2154 ], 2161 ],
2155 }, 2162 },
2156 ], 2163 ],
2157 }], 2164 }],
2158 ], 2165 ],
2159 } 2166 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | content/shell/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698