cb855fe728
This will allow to pull in gyp as a deps to the same location as chromium (tools/gyp not build/gyp), needed for gn switch. This is the first step of a 3-way move. 1) Copy v8.gyp in v8 2) Update references in embedders (follow up) 3) Remove old v8.gyp (follow up) BUG=chromium:474921 LOG=n NOTRY=true Review URL: https://codereview.chromium.org/1920793002 Cr-Commit-Position: refs/heads/master@{#35760}
34 lines
793 B
Plaintext
34 lines
793 B
Plaintext
# Copyright 2016 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
{
|
|
'variables': {
|
|
'command': [
|
|
'run-gcmole.py',
|
|
],
|
|
'files': [
|
|
'gccause.lua',
|
|
'gcmole.lua',
|
|
'parallel.py',
|
|
'run-gcmole.py',
|
|
# The following contains all relevant source and gyp files.
|
|
'../../base/',
|
|
'../../include/',
|
|
'../../src/',
|
|
'../../test/cctest/',
|
|
'../../third_party/icu/source/',
|
|
],
|
|
},
|
|
'conditions': [
|
|
['gcmole==1', {
|
|
'variables': {
|
|
'files': [
|
|
# This assumes gcmole tools have been fetched by a hook
|
|
# into v8/tools/gcmole/gcmole_tools.
|
|
'gcmole-tools/',
|
|
],
|
|
},
|
|
}],
|
|
],
|
|
}
|