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

Side by Side Diff: src/base.isolate

Issue 1833643002: [Interpreter] Remove separate Ignition snapshot. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add back interpreter initialization to tests Created 4 years, 8 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 | « build/toolchain.gypi ('k') | src/interpreter/interpreter.cc » ('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 2015 the V8 project authors. All rights reserved. 1 # Copyright 2015 the V8 project 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 'includes': [ 5 'includes': [
6 '../third_party/icu/icu.isolate', 6 '../third_party/icu/icu.isolate',
7 '../build/config/win/msvs_dependencies.isolate', 7 '../build/config/win/msvs_dependencies.isolate',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 ['use_custom_libcxx==1', { 10 ['use_custom_libcxx==1', {
11 'variables': { 11 'variables': {
12 'files': [ 12 'files': [
13 '<(PRODUCT_DIR)/lib/libc++.so', 13 '<(PRODUCT_DIR)/lib/libc++.so',
14 ], 14 ],
15 }, 15 },
16 }], 16 }],
17 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { 17 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', {
18 'variables': { 18 'variables': {
19 'files': [ 19 'files': [
20 '<(PRODUCT_DIR)/natives_blob.bin', 20 '<(PRODUCT_DIR)/natives_blob.bin',
21 '<(PRODUCT_DIR)/snapshot_blob.bin', 21 '<(PRODUCT_DIR)/snapshot_blob.bin',
22 ], 22 ],
23 }, 23 },
24 }], 24 }],
25 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1 and v8_separat e_ignition_snapshot==1', {
26 'variables': {
27 'files': [
28 '<(PRODUCT_DIR)/snapshot_blob_ignition.bin',
29 ],
30 },
31 }],
32 ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', { 25 ['OS=="linux" and component=="shared_library" and target_arch=="ia32"', {
33 'variables': { 26 'variables': {
34 'files': [ 27 'files': [
35 '<(PRODUCT_DIR)/lib/', 28 '<(PRODUCT_DIR)/lib/',
36 ], 29 ],
37 }, 30 },
38 }], 31 }],
39 ['OS=="win" and component=="shared_library"', { 32 ['OS=="win" and component=="shared_library"', {
40 'variables': { 33 'variables': {
41 'files': [ 34 'files': [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT ABLE_SUFFIX)', 66 '../third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer<(EXECUT ABLE_SUFFIX)',
74 ], 67 ],
75 }, 68 },
76 }], 69 }],
77 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211 70 # Workaround for https://code.google.com/p/swarming/issues/detail?id=211
78 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', { 71 ['asan==0 or cfi_vptr==0 or msan==0 or tsan==0', {
79 'variables': {}, 72 'variables': {},
80 }], 73 }],
81 ], 74 ],
82 } 75 }
OLDNEW
« no previous file with comments | « build/toolchain.gypi ('k') | src/interpreter/interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698