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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Ross' comments Created 6 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
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 '../apps/saved_files_service_unittest.cc', 7 '../apps/saved_files_service_unittest.cc',
8 '../components/autofill/content/renderer/test_password_autofill_agent.cc', 8 '../components/autofill/content/renderer/test_password_autofill_agent.cc',
9 '../components/autofill/content/renderer/test_password_autofill_agent.h', 9 '../components/autofill/content/renderer/test_password_autofill_agent.h',
10 '../components/autofill/content/renderer/test_password_generation_agent.cc ', 10 '../components/autofill/content/renderer/test_password_generation_agent.cc ',
(...skipping 2821 matching lines...) Expand 10 before | Expand all | Expand 10 after
2832 'target_name': 'unit_tests_apk', 2832 'target_name': 'unit_tests_apk',
2833 'type': 'none', 2833 'type': 'none',
2834 'dependencies': [ 2834 'dependencies': [
2835 'chrome_java', 2835 'chrome_java',
2836 'unit_tests_java', 2836 'unit_tests_java',
2837 'unit_tests', 2837 'unit_tests',
2838 ], 2838 ],
2839 'variables': { 2839 'variables': {
2840 'test_suite_name': 'unit_tests', 2840 'test_suite_name': 'unit_tests',
2841 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes t.xml', 2841 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes t.xml',
2842 'conditions': [
2843 ['v8_use_external_startup_data==1', {
2844 'additional_input_paths': [
2845 '<(PRODUCT_DIR)/natives_blob.bin',
2846 '<(PRODUCT_DIR)/snapshot_blob.bin',
2847 ],
2848 }],
2849 ],
2842 }, 2850 },
2851 'copies': [
2852 {
2853 'destination': '<(PRODUCT_DIR)/unit_tests_apk/assets',
2854 'conditions': [
2855 ['v8_use_external_startup_data==1', {
2856 'files': [
2857 '<(PRODUCT_DIR)/natives_blob.bin',
2858 '<(PRODUCT_DIR)/snapshot_blob.bin',
2859 ],
2860 }],
2861 ],
2862 },
2863 ],
2843 'includes': [ '../build/apk_test.gypi' ], 2864 'includes': [ '../build/apk_test.gypi' ],
2844 }, 2865 },
2845 ], 2866 ],
2846 }], 2867 }],
2847 ['test_isolation_mode != "noop"', { 2868 ['test_isolation_mode != "noop"', {
2848 'targets': [ 2869 'targets': [
2849 { 2870 {
2850 'target_name': 'unit_tests_run', 2871 'target_name': 'unit_tests_run',
2851 'type': 'none', 2872 'type': 'none',
2852 'dependencies': [ 2873 'dependencies': [
(...skipping 10 matching lines...) Expand all
2863 'dependencies': [ 2884 'dependencies': [
2864 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2885 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2865 ], 2886 ],
2866 }], 2887 }],
2867 ], 2888 ],
2868 }, 2889 },
2869 ], 2890 ],
2870 }], 2891 }],
2871 ], # 'conditions' 2892 ], # 'conditions'
2872 } 2893 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698