| Index: tools/gyp/v8.gyp
|
| diff --git a/tools/gyp/v8.gyp b/tools/gyp/v8.gyp
|
| index f3097ef7d5516c3efcb9a1853b77a633ff974f2a..5baa245d5ee105b7a372b118ddd6497a981187ac 100644
|
| --- a/tools/gyp/v8.gyp
|
| +++ b/tools/gyp/v8.gyp
|
| @@ -28,6 +28,7 @@
|
| {
|
| 'variables': {
|
| 'v8_code': 1,
|
| + 'v8_random_seed%': 314159265,
|
| },
|
| 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
|
| 'targets': [
|
| @@ -156,6 +157,11 @@
|
| '--log-snapshot-positions',
|
| '--logfile', '<(INTERMEDIATE_DIR)/snapshot.log',
|
| ],
|
| + 'conditions': [
|
| + ['v8_random_seed!=0', {
|
| + 'mksnapshot_flags': ['--random-seed', '<(v8_random_seed)'],
|
| + }],
|
| + ],
|
| },
|
| 'action': [
|
| '<@(_inputs)',
|
| @@ -211,8 +217,6 @@
|
| '../../src/allocation.h',
|
| '../../src/allocation-site-scopes.cc',
|
| '../../src/allocation-site-scopes.h',
|
| - '../../src/allocation-tracker.cc',
|
| - '../../src/allocation-tracker.h',
|
| '../../src/api.cc',
|
| '../../src/api.h',
|
| '../../src/apiutils.h',
|
|
|