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

Side by Side Diff: BUILD.gn

Issue 1069883002: WIP SharedArrayBuffer implementation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: merge master 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 | include/v8.h » ('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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 "src/messages.h", 267 "src/messages.h",
268 "src/proxy.js", 268 "src/proxy.js",
269 "src/generator.js", 269 "src/generator.js",
270 "src/harmony-array.js", 270 "src/harmony-array.js",
271 "src/harmony-array-includes.js", 271 "src/harmony-array-includes.js",
272 "src/harmony-typedarray.js", 272 "src/harmony-typedarray.js",
273 "src/harmony-tostring.js", 273 "src/harmony-tostring.js",
274 "src/harmony-regexp.js", 274 "src/harmony-regexp.js",
275 "src/harmony-reflect.js", 275 "src/harmony-reflect.js",
276 "src/harmony-spread.js", 276 "src/harmony-spread.js",
277 "src/harmony-object.js" 277 "src/harmony-object.js",
278 "src/harmony-sharedarraybuffer.js",
279 "src/harmony-sharedtypedarray.js"
278 ] 280 ]
279 281
280 outputs = [ 282 outputs = [
281 "$target_gen_dir/experimental-libraries.cc", 283 "$target_gen_dir/experimental-libraries.cc",
282 ] 284 ]
283 285
284 args = [ 286 args = [
285 rebase_path("$target_gen_dir/experimental-libraries.cc", 287 rebase_path("$target_gen_dir/experimental-libraries.cc",
286 root_build_dir), 288 root_build_dir),
287 "EXPERIMENTAL", 289 "EXPERIMENTAL",
(...skipping 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 sources += [ 1665 sources += [
1664 "src/d8-debug.cc", 1666 "src/d8-debug.cc",
1665 "$target_gen_dir/d8-js.cc", 1667 "$target_gen_dir/d8-js.cc",
1666 ] 1668 ]
1667 } 1669 }
1668 if (v8_enable_i18n_support) { 1670 if (v8_enable_i18n_support) {
1669 deps += [ "//third_party/icu" ] 1671 deps += [ "//third_party/icu" ]
1670 } 1672 }
1671 } 1673 }
1672 } 1674 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698