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

Side by Side Diff: components/components_tests.gyp

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: Created 5 years, 7 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1193 '../content/content.gyp:content_icudata', 1193 '../content/content.gyp:content_icudata',
1194 '../content/content.gyp:content_java', 1194 '../content/content.gyp:content_java',
1195 '../content/content.gyp:content_v8_external_data', 1195 '../content/content.gyp:content_v8_external_data',
1196 '../content/content_shell_and_tests.gyp:content_java_test_support', 1196 '../content/content_shell_and_tests.gyp:content_java_test_support',
1197 '../content/content_shell_and_tests.gyp:content_shell_java', 1197 '../content/content_shell_and_tests.gyp:content_shell_java',
1198 'components_browsertests_paks_copy', 1198 'components_browsertests_paks_copy',
1199 'components_browsertests', 1199 'components_browsertests',
1200 ], 1200 ],
1201 'variables': { 1201 'variables': {
1202 'apk_name': 'components_browsertests', 1202 'apk_name': 'components_browsertests',
1203 'isolate_file': 'components_browsertests.isolate',
1203 'java_in_dir': 'test/android/browsertests_apk', 1204 'java_in_dir': 'test/android/browsertests_apk',
1204 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/components_brow sertests_manifest/AndroidManifest.xml', 1205 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/components_brow sertests_manifest/AndroidManifest.xml',
1205 'resource_dir': 'test/android/browsertests_apk/res', 1206 'resource_dir': 'test/android/browsertests_apk/res',
1206 'native_lib_target': 'libcomponents_browsertests', 1207 'native_lib_target': 'libcomponents_browsertests',
1207 'asset_location': '<(PRODUCT_DIR)/components_browsertests_apk_shell/ assets', 1208 'asset_location': '<(PRODUCT_DIR)/components_browsertests_apk_shell/ assets',
1208 }, 1209 },
1209 'includes': [ '../build/java_apk.gypi' ], 1210 'includes': [ '../build/java_apk.gypi' ],
1210 }, 1211 },
1211 ], 1212 ],
1212 }], 1213 }],
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
1414 ], 1415 ],
1415 }], 1416 }],
1416 ], 1417 ],
1417 }, 1418 },
1418 ], 1419 ],
1419 }], 1420 }],
1420 ['OS == "android"', { 1421 ['OS == "android"', {
1421 'targets': [ 1422 'targets': [
1422 { 1423 {
1423 'target_name': 'components_unittests_apk', 1424 'target_name': 'components_unittests_apk',
1425 'isolate_file': 'components_unittests.isolate',
1424 'type': 'none', 1426 'type': 'none',
1425 'dependencies': [ 1427 'dependencies': [
1426 'components_unittests', 1428 'components_unittests',
1427 'components.gyp:invalidation_java', 1429 'components.gyp:invalidation_java',
1428 ], 1430 ],
1429 'variables': { 1431 'variables': {
1430 'test_suite_name': 'components_unittests', 1432 'test_suite_name': 'components_unittests',
1431 }, 1433 },
1432 'includes': [ '../build/apk_test.gypi' ], 1434 'includes': [ '../build/apk_test.gypi' ],
1433 }, 1435 },
1434 ], 1436 ],
1435 }], 1437 }],
1436 ], 1438 ],
1437 } 1439 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698