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

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: rebase 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') | no next file with comments »
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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/symbol.js", 195 "src/symbol.js",
196 "src/uri.js", 196 "src/uri.js",
197 "third_party/fdlibm/fdlibm.js",
197 "src/math.js", 198 "src/math.js",
198 "src/messages.js", 199 "src/messages.js",
199 "src/apinatives.js", 200 "src/apinatives.js",
200 "src/debug-debugger.js", 201 "src/debug-debugger.js",
201 "src/mirror-debugger.js", 202 "src/mirror-debugger.js",
202 "src/liveedit-debugger.js", 203 "src/liveedit-debugger.js",
203 "src/date.js", 204 "src/date.js",
204 "src/json.js", 205 "src/json.js",
205 "src/regexp.js", 206 "src/regexp.js",
206 "src/arraybuffer.js", 207 "src/arraybuffer.js",
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 "src/v8threads.h", 859 "src/v8threads.h",
859 "src/variables.cc", 860 "src/variables.cc",
860 "src/variables.h", 861 "src/variables.h",
861 "src/version.cc", 862 "src/version.cc",
862 "src/version.h", 863 "src/version.h",
863 "src/vm-state-inl.h", 864 "src/vm-state-inl.h",
864 "src/vm-state.h", 865 "src/vm-state.h",
865 "src/zone-inl.h", 866 "src/zone-inl.h",
866 "src/zone.cc", 867 "src/zone.cc",
867 "src/zone.h", 868 "src/zone.h",
869 "third_party/fdlibm/fdlibm.cc',
870 "third_party/fdlibm/fdlibm.h',
868 ] 871 ]
869 872
870 if (v8_target_arch == "x86") { 873 if (v8_target_arch == "x86") {
871 sources += [ 874 sources += [
872 "src/ia32/assembler-ia32-inl.h", 875 "src/ia32/assembler-ia32-inl.h",
873 "src/ia32/assembler-ia32.cc", 876 "src/ia32/assembler-ia32.cc",
874 "src/ia32/assembler-ia32.h", 877 "src/ia32/assembler-ia32.h",
875 "src/ia32/builtins-ia32.cc", 878 "src/ia32/builtins-ia32.cc",
876 "src/ia32/code-stubs-ia32.cc", 879 "src/ia32/code-stubs-ia32.cc",
877 "src/ia32/code-stubs-ia32.h", 880 "src/ia32/code-stubs-ia32.h",
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 deps = [ 1288 deps = [
1286 ":v8_base", 1289 ":v8_base",
1287 ":v8_nosnapshot", 1290 ":v8_nosnapshot",
1288 ] 1291 ]
1289 } 1292 }
1290 1293
1291 direct_dependent_configs = [ ":external_config" ] 1294 direct_dependent_configs = [ ":external_config" ]
1292 } 1295 }
1293 1296
1294 } 1297 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698