Skip to content

Commit 3ac4c1f

Browse files
nitsakhMarshallOfSound
authored andcommitted
Update libcc and replace snapshot_blob.bin by v8_context_snapshot.bin
1 parent a45862c commit 3ac4c1f

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/tutorial/snapcraft.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The output should look roughly like this:
6363
├── locales
6464
├── natives_blob.bin
6565
├── resources
66-
├── snapshot_blob.bin
66+
├── v8_context_snapshot.bin
6767
└── version
6868
```
6969

docs/tutorial/windows-store-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The output should look roughly like this:
6767
├── resources
6868
│   ├── app
6969
│   └── atom.asar
70-
├── snapshot_blob.bin
70+
├── v8_context_snapshot.bin
7171
├── squirrel.exe
7272
└── ui_resources_200_percent.pak
7373
```

electron.gyp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@
209209
'<(libchromiumcontent_dir)/ui_resources_200_percent.pak',
210210
'<(libchromiumcontent_dir)/views_resources_200_percent.pak',
211211
'<(libchromiumcontent_dir)/natives_blob.bin',
212-
'<(libchromiumcontent_dir)/snapshot_blob.bin',
212+
'<(libchromiumcontent_dir)/v8_context_snapshot.bin',
213213
'external_binaries/d3dcompiler_47.dll',
214214
],
215215
},
@@ -249,7 +249,7 @@
249249
'<(libchromiumcontent_dir)/ui_resources_200_percent.pak',
250250
'<(libchromiumcontent_dir)/views_resources_200_percent.pak',
251251
'<(libchromiumcontent_dir)/natives_blob.bin',
252-
'<(libchromiumcontent_dir)/snapshot_blob.bin',
252+
'<(libchromiumcontent_dir)/v8_context_snapshot.bin',
253253
],
254254
},
255255
],
@@ -645,7 +645,7 @@
645645
'<(libchromiumcontent_dir)/ui_resources_200_percent.pak',
646646
'<(libchromiumcontent_dir)/views_resources_200_percent.pak',
647647
'<(libchromiumcontent_dir)/natives_blob.bin',
648-
'<(libchromiumcontent_dir)/snapshot_blob.bin',
648+
'<(libchromiumcontent_dir)/v8_context_snapshot.bin',
649649
],
650650
'xcode_settings': {
651651
'ATOM_BUNDLE_ID': 'com.<(company_abbr).<(project_name).framework',

script/create-dist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
'ui_resources_200_percent.pak',
4949
'views_resources_200_percent.pak',
5050
'natives_blob.bin',
51-
'snapshot_blob.bin',
51+
'v8_context_snapshot.bin',
5252
],
5353
'linux': [
5454
PROJECT_NAME, # 'electron'
@@ -61,7 +61,7 @@
6161
'ui_resources_200_percent.pak',
6262
'views_resources_200_percent.pak',
6363
'natives_blob.bin',
64-
'snapshot_blob.bin',
64+
'v8_context_snapshot.bin',
6565
],
6666
}
6767
TARGET_BINARIES_EXT = []

0 commit comments

Comments
 (0)