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

Side by Side Diff: BUILD.gn

Issue 411263004: Implement trigonometric functions using a fdlibm port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comments Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « .gitignore ('k') | DEPS » ('j') | test/mjsunit/sin-cos.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 # The script depends on this other script, this rule causes a rebuild if it 186 # The script depends on this other script, this rule causes a rebuild if it
187 # changes. 187 # changes.
188 source_prereqs = [ "tools/jsmin.py" ] 188 source_prereqs = [ "tools/jsmin.py" ]
189 189
190 sources = [ 190 sources = [
191 "src/runtime.js", 191 "src/runtime.js",
192 "src/v8natives.js", 192 "src/v8natives.js",
193 "src/array.js", 193 "src/array.js",
194 "src/string.js", 194 "src/string.js",
195 "src/uri.js", 195 "src/uri.js",
196 "third_party/fdlibm/fdlibm.js",
196 "src/math.js", 197 "src/math.js",
197 "src/messages.js", 198 "src/messages.js",
198 "src/apinatives.js", 199 "src/apinatives.js",
199 "src/debug-debugger.js", 200 "src/debug-debugger.js",
200 "src/mirror-debugger.js", 201 "src/mirror-debugger.js",
201 "src/liveedit-debugger.js", 202 "src/liveedit-debugger.js",
202 "src/date.js", 203 "src/date.js",
203 "src/json.js", 204 "src/json.js",
204 "src/regexp.js", 205 "src/regexp.js",
205 "src/arraybuffer.js", 206 "src/arraybuffer.js",
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
767 "src/v8threads.h", 768 "src/v8threads.h",
768 "src/variables.cc", 769 "src/variables.cc",
769 "src/variables.h", 770 "src/variables.h",
770 "src/version.cc", 771 "src/version.cc",
771 "src/version.h", 772 "src/version.h",
772 "src/vm-state-inl.h", 773 "src/vm-state-inl.h",
773 "src/vm-state.h", 774 "src/vm-state.h",
774 "src/zone-inl.h", 775 "src/zone-inl.h",
775 "src/zone.cc", 776 "src/zone.cc",
776 "src/zone.h", 777 "src/zone.h",
778 "third_party/fdlibm/fdlibm.cc',
779 "third_party/fdlibm/fdlibm.h',
777 ] 780 ]
778 781
779 if (v8_target_arch == "x86") { 782 if (v8_target_arch == "x86") {
780 sources += [ 783 sources += [
781 "src/ia32/assembler-ia32-inl.h", 784 "src/ia32/assembler-ia32-inl.h",
782 "src/ia32/assembler-ia32.cc", 785 "src/ia32/assembler-ia32.cc",
783 "src/ia32/assembler-ia32.h", 786 "src/ia32/assembler-ia32.h",
784 "src/ia32/builtins-ia32.cc", 787 "src/ia32/builtins-ia32.cc",
785 "src/ia32/code-stubs-ia32.cc", 788 "src/ia32/code-stubs-ia32.cc",
786 "src/ia32/code-stubs-ia32.h", 789 "src/ia32/code-stubs-ia32.h",
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
1178 deps = [ 1181 deps = [
1179 ":v8_base", 1182 ":v8_base",
1180 ":v8_nosnapshot", 1183 ":v8_nosnapshot",
1181 ] 1184 ]
1182 } 1185 }
1183 1186
1184 direct_dependent_configs = [ ":external_config" ] 1187 direct_dependent_configs = [ ":external_config" ]
1185 } 1188 }
1186 1189
1187 } 1190 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | DEPS » ('j') | test/mjsunit/sin-cos.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698