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

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

Powered by Google App Engine
This is Rietveld 408576698