1a849d2754
- Introduce a global Makefile that triggers GYP-based building - Some fixes to .gyp[i] files to make everything work - tools/test-wrapper-gypbuild.py as a temporary solution for easy testing Original review URL: http://codereview.chromium.org/7383006/ Review URL: http://codereview.chromium.org/7550030 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8840 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
26 lines
559 B
Python
26 lines
559 B
Python
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'All',
|
|
'type': 'none',
|
|
'dependencies': [
|
|
'../preparser/preparser.gyp:*',
|
|
'../samples/samples.gyp:*',
|
|
'../src/d8.gyp:d8',
|
|
],
|
|
'conditions': [
|
|
[ 'component!="shared_library"', {
|
|
'dependencies': [
|
|
'../test/cctest/cctest.gyp:*',
|
|
],
|
|
}]
|
|
],
|
|
}
|
|
]
|
|
}
|
|
|