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

Side by Side Diff: BUILD.gn

Issue 1162503002: Implement Atomics API (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add more symbols to anonymous namespace Created 5 years, 6 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 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 262
263 # The script depends on this other script, this rule causes a rebuild if it 263 # The script depends on this other script, this rule causes a rebuild if it
264 # changes. 264 # changes.
265 inputs = [ "tools/jsmin.py" ] 265 inputs = [ "tools/jsmin.py" ]
266 266
267 sources = [ 267 sources = [
268 "src/macros.py", 268 "src/macros.py",
269 "src/messages.h", 269 "src/messages.h",
270 "src/proxy.js", 270 "src/proxy.js",
271 "src/generator.js", 271 "src/generator.js",
272 "src/harmony-atomics.js",
272 "src/harmony-array.js", 273 "src/harmony-array.js",
273 "src/harmony-array-includes.js", 274 "src/harmony-array-includes.js",
274 "src/harmony-typedarray.js", 275 "src/harmony-typedarray.js",
275 "src/harmony-tostring.js", 276 "src/harmony-tostring.js",
276 "src/harmony-regexp.js", 277 "src/harmony-regexp.js",
277 "src/harmony-reflect.js", 278 "src/harmony-reflect.js",
278 "src/harmony-spread.js", 279 "src/harmony-spread.js",
279 "src/harmony-object.js", 280 "src/harmony-object.js",
280 "src/harmony-sharedarraybuffer.js" 281 "src/harmony-sharedarraybuffer.js"
281 ] 282 ]
(...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 "src/regexp-macro-assembler-tracer.h", 992 "src/regexp-macro-assembler-tracer.h",
992 "src/regexp-macro-assembler.cc", 993 "src/regexp-macro-assembler.cc",
993 "src/regexp-macro-assembler.h", 994 "src/regexp-macro-assembler.h",
994 "src/regexp-stack.cc", 995 "src/regexp-stack.cc",
995 "src/regexp-stack.h", 996 "src/regexp-stack.h",
996 "src/rewriter.cc", 997 "src/rewriter.cc",
997 "src/rewriter.h", 998 "src/rewriter.h",
998 "src/runtime-profiler.cc", 999 "src/runtime-profiler.cc",
999 "src/runtime-profiler.h", 1000 "src/runtime-profiler.h",
1000 "src/runtime/runtime-array.cc", 1001 "src/runtime/runtime-array.cc",
1002 "src/runtime/runtime-atomics.cc",
1001 "src/runtime/runtime-classes.cc", 1003 "src/runtime/runtime-classes.cc",
1002 "src/runtime/runtime-collections.cc", 1004 "src/runtime/runtime-collections.cc",
1003 "src/runtime/runtime-compiler.cc", 1005 "src/runtime/runtime-compiler.cc",
1004 "src/runtime/runtime-date.cc", 1006 "src/runtime/runtime-date.cc",
1005 "src/runtime/runtime-debug.cc", 1007 "src/runtime/runtime-debug.cc",
1006 "src/runtime/runtime-forin.cc", 1008 "src/runtime/runtime-forin.cc",
1007 "src/runtime/runtime-function.cc", 1009 "src/runtime/runtime-function.cc",
1008 "src/runtime/runtime-generator.cc", 1010 "src/runtime/runtime-generator.cc",
1009 "src/runtime/runtime-i18n.cc", 1011 "src/runtime/runtime-i18n.cc",
1010 "src/runtime/runtime-internal.cc", 1012 "src/runtime/runtime-internal.cc",
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
1674 sources += [ 1676 sources += [
1675 "src/d8-debug.cc", 1677 "src/d8-debug.cc",
1676 "$target_gen_dir/d8-js.cc", 1678 "$target_gen_dir/d8-js.cc",
1677 ] 1679 ]
1678 } 1680 }
1679 if (v8_enable_i18n_support) { 1681 if (v8_enable_i18n_support) {
1680 deps += [ "//third_party/icu" ] 1682 deps += [ "//third_party/icu" ]
1681 } 1683 }
1682 } 1684 }
1683 } 1685 }
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