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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1400953002: Switch Chrome Android using v8 arch specific external data name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « chrome/chrome_android_paks.gypi ('k') | chromecast/chromecast.gyp » ('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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this 7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this
8 # dependency is needed to make commit bots run unit_tests on 8 # dependency is needed to make commit bots run unit_tests on
9 # histograms.xml changes. 9 # histograms.xml changes.
10 '../tools/metrics/histograms/histograms.xml', 10 '../tools/metrics/histograms/histograms.xml',
(...skipping 2899 matching lines...) Expand 10 before | Expand all | Expand 10 after
2910 'unit_tests', 2910 'unit_tests',
2911 ], 2911 ],
2912 'variables': { 2912 'variables': {
2913 'test_suite_name': 'unit_tests', 2913 'test_suite_name': 'unit_tests',
2914 'isolate_file': 'unit_tests.isolate', 2914 'isolate_file': 'unit_tests.isolate',
2915 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes t.xml', 2915 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes t.xml',
2916 'conditions': [ 2916 'conditions': [
2917 ['v8_use_external_startup_data==1', { 2917 ['v8_use_external_startup_data==1', {
2918 'asset_location': '<(PRODUCT_DIR)/unit_tests_apk/assets', 2918 'asset_location': '<(PRODUCT_DIR)/unit_tests_apk/assets',
2919 'additional_input_paths': [ 2919 'additional_input_paths': [
2920 '<(PRODUCT_DIR)/unit_tests_apk/assets/natives_blob.bin', 2920 '<(PRODUCT_DIR)/unit_tests_apk/assets/natives_blob_<(arch_suff ix).bin',
2921 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob.bin', 2921 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob_<(arch_suf fix).bin',
2922 ], 2922 ],
2923 }], 2923 }],
2924 ], 2924 ],
2925 }, 2925 },
2926 'conditions': [ 2926 'conditions': [
2927 ['v8_use_external_startup_data==1', { 2927 ['v8_use_external_startup_data==1', {
2928 'dependencies': [ 2928 'dependencies': [
2929 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', 2929 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
2930 ], 2930 ],
2931 'variables': { 2931 'variables': {
2932 'dest_path': '<(asset_location)', 2932 'dest_path': '<(asset_location)',
2933 'src_files': [ 2933 'renaming_sources': [
2934 '<(PRODUCT_DIR)/natives_blob.bin', 2934 '<(PRODUCT_DIR)/natives_blob.bin',
2935 '<(PRODUCT_DIR)/snapshot_blob.bin', 2935 '<(PRODUCT_DIR)/snapshot_blob.bin',
2936 ], 2936 ],
2937 'renaming_destinations': [
2938 'natives_blob_<(arch_suffix).bin',
2939 'snapshot_blob_<(arch_suffix).bin',
2940 ],
2937 'clear': 1, 2941 'clear': 1,
2938 }, 2942 },
2939 'includes': ['../build/android/copy_ex.gypi'], 2943 'includes': ['../build/android/copy_ex.gypi'],
2940 }], 2944 }],
2941 ], 2945 ],
2942 'includes': [ '../build/apk_test.gypi' ], 2946 'includes': [
2947 '../build/apk_test.gypi',
2948 '../build/android/v8_external_startup_data_arch_suffix.gypi'
2949 ],
2943 }, 2950 },
2944 ], 2951 ],
2945 'conditions': [ 2952 'conditions': [
2946 ['test_isolation_mode != "noop"', { 2953 ['test_isolation_mode != "noop"', {
2947 'targets': [ 2954 'targets': [
2948 { 2955 {
2949 'target_name': 'unit_tests_apk_run', 2956 'target_name': 'unit_tests_apk_run',
2950 'type': 'none', 2957 'type': 'none',
2951 'dependencies': [ 2958 'dependencies': [
2952 'unit_tests_apk', 2959 'unit_tests_apk',
(...skipping 28 matching lines...) Expand all
2981 'dependencies': [ 2988 'dependencies': [
2982 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2989 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2983 ], 2990 ],
2984 }], 2991 }],
2985 ], 2992 ],
2986 }, 2993 },
2987 ], 2994 ],
2988 }], 2995 }],
2989 ], # 'conditions' 2996 ], # 'conditions'
2990 } 2997 }
OLDNEW
« no previous file with comments | « chrome/chrome_android_paks.gypi ('k') | chromecast/chromecast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698