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

Side by Side Diff: BUILD.gn

Issue 1124813005: WIP Atomics (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix AtomicsLoad type in typer.cc 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 | src/bootstrapper.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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni") 7 import("//build/config/mips.gni")
8 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 261
262 # The script depends on this other script, this rule causes a rebuild if it 262 # The script depends on this other script, this rule causes a rebuild if it
263 # changes. 263 # changes.
264 inputs = [ "tools/jsmin.py" ] 264 inputs = [ "tools/jsmin.py" ]
265 265
266 sources = [ 266 sources = [
267 "src/macros.py", 267 "src/macros.py",
268 "src/messages.h", 268 "src/messages.h",
269 "src/proxy.js", 269 "src/proxy.js",
270 "src/generator.js", 270 "src/generator.js",
271 "src/harmony-atomics.js",
271 "src/harmony-array.js", 272 "src/harmony-array.js",
272 "src/harmony-array-includes.js", 273 "src/harmony-array-includes.js",
273 "src/harmony-typedarray.js", 274 "src/harmony-typedarray.js",
274 "src/harmony-tostring.js", 275 "src/harmony-tostring.js",
275 "src/harmony-regexp.js", 276 "src/harmony-regexp.js",
276 "src/harmony-reflect.js", 277 "src/harmony-reflect.js",
277 "src/harmony-spread.js", 278 "src/harmony-spread.js",
278 "src/harmony-object.js", 279 "src/harmony-object.js",
279 "src/harmony-sharedarraybuffer.js", 280 "src/harmony-sharedarraybuffer.js",
280 "src/harmony-sharedtypedarray.js" 281 "src/harmony-sharedtypedarray.js"
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 "src/regexp-macro-assembler-tracer.h", 990 "src/regexp-macro-assembler-tracer.h",
990 "src/regexp-macro-assembler.cc", 991 "src/regexp-macro-assembler.cc",
991 "src/regexp-macro-assembler.h", 992 "src/regexp-macro-assembler.h",
992 "src/regexp-stack.cc", 993 "src/regexp-stack.cc",
993 "src/regexp-stack.h", 994 "src/regexp-stack.h",
994 "src/rewriter.cc", 995 "src/rewriter.cc",
995 "src/rewriter.h", 996 "src/rewriter.h",
996 "src/runtime-profiler.cc", 997 "src/runtime-profiler.cc",
997 "src/runtime-profiler.h", 998 "src/runtime-profiler.h",
998 "src/runtime/runtime-array.cc", 999 "src/runtime/runtime-array.cc",
1000 "src/runtime/runtime-atomics.cc",
999 "src/runtime/runtime-classes.cc", 1001 "src/runtime/runtime-classes.cc",
1000 "src/runtime/runtime-collections.cc", 1002 "src/runtime/runtime-collections.cc",
1001 "src/runtime/runtime-compiler.cc", 1003 "src/runtime/runtime-compiler.cc",
1002 "src/runtime/runtime-date.cc", 1004 "src/runtime/runtime-date.cc",
1003 "src/runtime/runtime-debug.cc", 1005 "src/runtime/runtime-debug.cc",
1004 "src/runtime/runtime-function.cc", 1006 "src/runtime/runtime-function.cc",
1005 "src/runtime/runtime-generator.cc", 1007 "src/runtime/runtime-generator.cc",
1006 "src/runtime/runtime-i18n.cc", 1008 "src/runtime/runtime-i18n.cc",
1007 "src/runtime/runtime-internal.cc", 1009 "src/runtime/runtime-internal.cc",
1008 "src/runtime/runtime-json.cc", 1010 "src/runtime/runtime-json.cc",
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1665 sources += [ 1667 sources += [
1666 "src/d8-debug.cc", 1668 "src/d8-debug.cc",
1667 "$target_gen_dir/d8-js.cc", 1669 "$target_gen_dir/d8-js.cc",
1668 ] 1670 ]
1669 } 1671 }
1670 if (v8_enable_i18n_support) { 1672 if (v8_enable_i18n_support) {
1671 deps += [ "//third_party/icu" ] 1673 deps += [ "//third_party/icu" ]
1672 } 1674 }
1673 } 1675 }
1674 } 1676 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698