| Index: test/cctest/cctest.gyp
|
| ===================================================================
|
| --- test/cctest/cctest.gyp (revision 8778)
|
| +++ test/cctest/cctest.gyp (working copy)
|
| @@ -26,6 +26,9 @@
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| {
|
| + 'variables': {
|
| + 'generated_file': '<(SHARED_INTERMEDIATE_DIR)/resources.cc',
|
| + },
|
| 'includes': [ '../../build/v8-features.gypi' ],
|
| 'targets': [
|
| {
|
| @@ -33,11 +36,13 @@
|
| 'type': 'executable',
|
| 'dependencies': [
|
| '../../tools/gyp/v8.gyp:v8',
|
| + 'resources',
|
| ],
|
| 'include_dirs': [
|
| '../../src',
|
| ],
|
| 'sources': [
|
| + '<(generated_file)',
|
| 'cctest.cc',
|
| 'gay-fixed.cc',
|
| 'gay-precision.cc',
|
| @@ -56,6 +61,7 @@
|
| 'test-debug.cc',
|
| 'test-decls.cc',
|
| 'test-deoptimization.cc',
|
| + 'test-dictionary.cc',
|
| 'test-diy-fp.cc',
|
| 'test-double.cc',
|
| 'test-dtoa.cc',
|
| @@ -71,7 +77,6 @@
|
| 'test-lock.cc',
|
| 'test-lockers.cc',
|
| 'test-log.cc',
|
| - 'test-log-utils.cc',
|
| 'test-mark-compact.cc',
|
| 'test-parsing.cc',
|
| 'test-profile-generator.cc',
|
| @@ -132,5 +137,41 @@
|
| }],
|
| ],
|
| },
|
| + {
|
| + 'target_name': 'resources',
|
| + 'type': 'none',
|
| + 'variables': {
|
| + 'file_list': [
|
| + '../../tools/splaytree.js',
|
| + '../../tools/codemap.js',
|
| + '../../tools/csvparser.js',
|
| + '../../tools/consarray.js',
|
| + '../../tools/profile.js',
|
| + '../../tools/profile_view.js',
|
| + '../../tools/logreader.js',
|
| + 'log-eq-of-logging-and-traversal.js',
|
| + ],
|
| + },
|
| + 'actions': [
|
| + {
|
| + 'action_name': 'js2c',
|
| + 'inputs': [
|
| + '../../tools/js2c.py',
|
| + '<@(file_list)',
|
| + ],
|
| + 'outputs': [
|
| + '<(generated_file)',
|
| + ],
|
| + 'action': [
|
| + 'python',
|
| + '../../tools/js2c.py',
|
| + '<@(_outputs)',
|
| + 'TEST', # type
|
| + 'off', # compression
|
| + '<@(file_list)',
|
| + ],
|
| + }
|
| + ],
|
| + },
|
| ],
|
| }
|
|
|