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

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: Addressed cjhopman's comments. 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 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after
1213 '../content/content.gyp:content_icudata', 1213 '../content/content.gyp:content_icudata',
1214 '../content/content.gyp:content_java', 1214 '../content/content.gyp:content_java',
1215 '../content/content.gyp:content_v8_external_data', 1215 '../content/content.gyp:content_v8_external_data',
1216 '../content/content_shell_and_tests.gyp:content_java_test_support', 1216 '../content/content_shell_and_tests.gyp:content_java_test_support',
1217 '../content/content_shell_and_tests.gyp:content_shell_java', 1217 '../content/content_shell_and_tests.gyp:content_shell_java',
1218 'components_browsertests_paks_copy', 1218 'components_browsertests_paks_copy',
1219 'components_browsertests', 1219 'components_browsertests',
1220 ], 1220 ],
1221 'variables': { 1221 'variables': {
1222 'test_suite_name': 'components_browsertests', 1222 'test_suite_name': 'components_browsertests',
1223 'isolate_file': 'components_browsertests.isolate',
1223 'java_in_dir': 'test/android/browsertests_apk', 1224 'java_in_dir': 'test/android/browsertests_apk',
1224 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/components_brow sertests_manifest/AndroidManifest.xml', 1225 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/components_brow sertests_manifest/AndroidManifest.xml',
1225 'resource_dir': 'test/android/browsertests_apk/res', 1226 'resource_dir': 'test/android/browsertests_apk/res',
1226 'asset_location': '<(PRODUCT_DIR)/components_browsertests_apk_shell/ assets', 1227 'asset_location': '<(PRODUCT_DIR)/components_browsertests_apk_shell/ assets',
1227 }, 1228 },
1228 'includes': [ '../build/apk_browsertest.gypi' ], 1229 'includes': [ '../build/apk_browsertest.gypi' ],
1229 }, 1230 },
1230 ], 1231 ],
1231 }], 1232 }],
1232 ['OS != "ios"', { 1233 ['OS != "ios"', {
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1430 ], 1431 ],
1431 }], 1432 }],
1432 ], 1433 ],
1433 }, 1434 },
1434 ], 1435 ],
1435 }], 1436 }],
1436 ['OS == "android"', { 1437 ['OS == "android"', {
1437 'targets': [ 1438 'targets': [
1438 { 1439 {
1439 'target_name': 'components_unittests_apk', 1440 'target_name': 'components_unittests_apk',
1441 'isolate_file': 'components_unittests.isolate',
1440 'type': 'none', 1442 'type': 'none',
1441 'dependencies': [ 1443 'dependencies': [
1442 'components_unittests', 1444 'components_unittests',
1443 'components.gyp:invalidation_java', 1445 'components.gyp:invalidation_java',
1444 ], 1446 ],
1445 'variables': { 1447 'variables': {
1446 'test_suite_name': 'components_unittests', 1448 'test_suite_name': 'components_unittests',
1447 }, 1449 },
1448 'includes': [ '../build/apk_test.gypi' ], 1450 'includes': [ '../build/apk_test.gypi' ],
1449 }, 1451 },
1450 ], 1452 ],
1451 }], 1453 }],
1452 ], 1454 ],
1453 } 1455 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698