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

Side by Side Diff: BUILD.gn

Issue 1257063003: Add a --harmony-object-observe runtime flag (on by default) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Move some initialization back to the snapshot Created 5 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
« 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 "src/proxy.js", 306 "src/proxy.js",
307 "src/generator.js", 307 "src/generator.js",
308 "src/harmony-atomics.js", 308 "src/harmony-atomics.js",
309 "src/harmony-array-includes.js", 309 "src/harmony-array-includes.js",
310 "src/harmony-concat-spreadable.js", 310 "src/harmony-concat-spreadable.js",
311 "src/harmony-tostring.js", 311 "src/harmony-tostring.js",
312 "src/harmony-regexp.js", 312 "src/harmony-regexp.js",
313 "src/harmony-reflect.js", 313 "src/harmony-reflect.js",
314 "src/harmony-spread.js", 314 "src/harmony-spread.js",
315 "src/harmony-object.js", 315 "src/harmony-object.js",
316 "src/harmony-object-observe.js",
316 "src/harmony-sharedarraybuffer.js", 317 "src/harmony-sharedarraybuffer.js",
317 "src/harmony-simd.js" 318 "src/harmony-simd.js"
318 ] 319 ]
319 320
320 outputs = [ 321 outputs = [
321 "$target_gen_dir/experimental-libraries.cc", 322 "$target_gen_dir/experimental-libraries.cc",
322 ] 323 ]
323 324
324 args = [ 325 args = [
325 rebase_path("$target_gen_dir/experimental-libraries.cc", 326 rebase_path("$target_gen_dir/experimental-libraries.cc",
(...skipping 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after
1777 if (!is_component_build) { 1778 if (!is_component_build) {
1778 sources += [ 1779 sources += [
1779 "$target_gen_dir/d8-js.cc", 1780 "$target_gen_dir/d8-js.cc",
1780 ] 1781 ]
1781 } 1782 }
1782 if (v8_enable_i18n_support) { 1783 if (v8_enable_i18n_support) {
1783 deps += [ "//third_party/icu" ] 1784 deps += [ "//third_party/icu" ]
1784 } 1785 }
1785 } 1786 }
1786 } 1787 }
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