Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: build/standalone.gypi

Issue 1128113006: Add the concept of a V8 extras exports object (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Was mising test-extra.js :( Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'target_arch%': '<(target_arch)', 93 'target_arch%': '<(target_arch)',
94 'v8_target_arch%': '<(v8_target_arch)', 94 'v8_target_arch%': '<(v8_target_arch)',
95 'werror%': '-Werror', 95 'werror%': '-Werror',
96 'use_goma%': '<(use_goma)', 96 'use_goma%': '<(use_goma)',
97 'gomadir%': '<(gomadir)', 97 'gomadir%': '<(gomadir)',
98 'asan%': '<(asan)', 98 'asan%': '<(asan)',
99 'lsan%': '<(lsan)', 99 'lsan%': '<(lsan)',
100 'msan%': '<(msan)', 100 'msan%': '<(msan)',
101 'tsan%': '<(tsan)', 101 'tsan%': '<(tsan)',
102 102
103 # Add a simple extra solely for the purpose of the cctests
104 'v8_extra_library_files': ['../test/cctest/test-extra.js'],
105
103 # .gyp files or targets should set v8_code to 1 if they build V8 specific 106 # .gyp files or targets should set v8_code to 1 if they build V8 specific
104 # code, as opposed to external code. This variable is used to control such 107 # code, as opposed to external code. This variable is used to control such
105 # things as the set of warnings to enable, and whether warnings are treated 108 # things as the set of warnings to enable, and whether warnings are treated
106 # as errors. 109 # as errors.
107 'v8_code%': 0, 110 'v8_code%': 0,
108 111
109 # Speeds up Debug builds: 112 # Speeds up Debug builds:
110 # 0 - Compiler optimizations off (debuggable) (default). This may 113 # 0 - Compiler optimizations off (debuggable) (default). This may
111 # be 5x slower than Release (or worse). 114 # be 5x slower than Release (or worse).
112 # 1 - Turn on optimizations and disable slow DCHECKs, but leave 115 # 1 - Turn on optimizations and disable slow DCHECKs, but leave
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { 639 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', {
637 'make_global_settings': [ 640 'make_global_settings': [
638 ['CC_wrapper', '<(gomadir)/gomacc'], 641 ['CC_wrapper', '<(gomadir)/gomacc'],
639 ['CXX_wrapper', '<(gomadir)/gomacc'], 642 ['CXX_wrapper', '<(gomadir)/gomacc'],
640 ['CC.host_wrapper', '<(gomadir)/gomacc'], 643 ['CC.host_wrapper', '<(gomadir)/gomacc'],
641 ['CXX.host_wrapper', '<(gomadir)/gomacc'], 644 ['CXX.host_wrapper', '<(gomadir)/gomacc'],
642 ], 645 ],
643 }], 646 }],
644 ], 647 ],
645 } 648 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698