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

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: Sync master 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 2828 matching lines...) Expand 10 before | Expand all | Expand 10 after
2839 'target_name': 'unit_tests_apk', 2839 'target_name': 'unit_tests_apk',
2840 'type': 'none', 2840 'type': 'none',
2841 'dependencies': [ 2841 'dependencies': [
2842 'chrome_java', 2842 'chrome_java',
2843 'unit_tests_java', 2843 'unit_tests_java',
2844 'unit_tests', 2844 'unit_tests',
2845 ], 2845 ],
2846 'variables': { 2846 'variables': {
2847 'test_suite_name': 'unit_tests', 2847 'test_suite_name': 'unit_tests',
2848 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes t.xml', 2848 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes t.xml',
2849 'conditions': [
2850 ['v8_use_external_startup_data==1', {
2851 'additional_input_paths': [
2852 '<(PRODUCT_DIR)/natives_blob.bin',
2853 '<(PRODUCT_DIR)/snapshot_blob.bin',
2854 ],
2855 }],
2856 ],
2849 }, 2857 },
2858 'copies': [
2859 {
2860 'destination': '<(PRODUCT_DIR)/unit_tests_apk/assets',
2861 'conditions': [
2862 ['v8_use_external_startup_data==1', {
2863 'files': [
2864 '<(PRODUCT_DIR)/natives_blob.bin',
2865 '<(PRODUCT_DIR)/snapshot_blob.bin',
2866 ],
2867 }],
2868 ],
2869 },
2870 ],
2850 'includes': [ '../build/apk_test.gypi' ], 2871 'includes': [ '../build/apk_test.gypi' ],
2851 }, 2872 },
2852 ], 2873 ],
2853 }], 2874 }],
2854 ['test_isolation_mode != "noop"', { 2875 ['test_isolation_mode != "noop"', {
2855 'targets': [ 2876 'targets': [
2856 { 2877 {
2857 'target_name': 'unit_tests_run', 2878 'target_name': 'unit_tests_run',
2858 'type': 'none', 2879 'type': 'none',
2859 'dependencies': [ 2880 'dependencies': [
(...skipping 10 matching lines...) Expand all
2870 'dependencies': [ 2891 'dependencies': [
2871 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2892 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2872 ], 2893 ],
2873 }], 2894 }],
2874 ], 2895 ],
2875 }, 2896 },
2876 ], 2897 ],
2877 }], 2898 }],
2878 ], # 'conditions' 2899 ], # 'conditions'
2879 } 2900 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698