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

Side by Side Diff: BUILD.gn

Issue 638553003: Move fdlibm in src/third_party. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix gn Created 6 years, 2 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 | « no previous file | src/runtime/runtime-maths.cc » ('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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 # changes. 175 # changes.
176 source_prereqs = [ "tools/jsmin.py" ] 176 source_prereqs = [ "tools/jsmin.py" ]
177 177
178 sources = [ 178 sources = [
179 "src/runtime.js", 179 "src/runtime.js",
180 "src/v8natives.js", 180 "src/v8natives.js",
181 "src/symbol.js", 181 "src/symbol.js",
182 "src/array.js", 182 "src/array.js",
183 "src/string.js", 183 "src/string.js",
184 "src/uri.js", 184 "src/uri.js",
185 "third_party/fdlibm/fdlibm.js", 185 "src/third_party/fdlibm/fdlibm.js",
186 "src/math.js", 186 "src/math.js",
187 "src/apinatives.js", 187 "src/apinatives.js",
188 "src/date.js", 188 "src/date.js",
189 "src/regexp.js", 189 "src/regexp.js",
190 "src/arraybuffer.js", 190 "src/arraybuffer.js",
191 "src/typedarray.js", 191 "src/typedarray.js",
192 "src/generator.js", 192 "src/generator.js",
193 "src/object-observe.js", 193 "src/object-observe.js",
194 "src/collection.js", 194 "src/collection.js",
195 "src/weak-collection.js", 195 "src/weak-collection.js",
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
907 "src/v8threads.h", 907 "src/v8threads.h",
908 "src/variables.cc", 908 "src/variables.cc",
909 "src/variables.h", 909 "src/variables.h",
910 "src/version.cc", 910 "src/version.cc",
911 "src/version.h", 911 "src/version.h",
912 "src/vm-state-inl.h", 912 "src/vm-state-inl.h",
913 "src/vm-state.h", 913 "src/vm-state.h",
914 "src/zone-inl.h", 914 "src/zone-inl.h",
915 "src/zone.cc", 915 "src/zone.cc",
916 "src/zone.h", 916 "src/zone.h",
917 "third_party/fdlibm/fdlibm.cc", 917 "src/third_party/fdlibm/fdlibm.cc",
918 "third_party/fdlibm/fdlibm.h", 918 "src/third_party/fdlibm/fdlibm.h",
919 ] 919 ]
920 920
921 if (v8_target_arch == "x86") { 921 if (v8_target_arch == "x86") {
922 sources += [ 922 sources += [
923 "src/ia32/assembler-ia32-inl.h", 923 "src/ia32/assembler-ia32-inl.h",
924 "src/ia32/assembler-ia32.cc", 924 "src/ia32/assembler-ia32.cc",
925 "src/ia32/assembler-ia32.h", 925 "src/ia32/assembler-ia32.h",
926 "src/ia32/builtins-ia32.cc", 926 "src/ia32/builtins-ia32.cc",
927 "src/ia32/code-stubs-ia32.cc", 927 "src/ia32/code-stubs-ia32.cc",
928 "src/ia32/code-stubs-ia32.h", 928 "src/ia32/code-stubs-ia32.h",
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
1424 deps = [ 1424 deps = [
1425 ":v8_base", 1425 ":v8_base",
1426 ":v8_nosnapshot", 1426 ":v8_nosnapshot",
1427 ] 1427 ]
1428 } 1428 }
1429 1429
1430 direct_dependent_configs = [ ":external_config" ] 1430 direct_dependent_configs = [ ":external_config" ]
1431 } 1431 }
1432 1432
1433 } 1433 }
OLDNEW
« no previous file with comments | « no previous file | src/runtime/runtime-maths.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698