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

Side by Side Diff: BUILD.gn

Issue 1558543002: Add a --harmony-species flag, defining @@species on constructors (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 "src/js/macros.py", 279 "src/js/macros.py",
280 "src/messages.h", 280 "src/messages.h",
281 "src/js/proxy.js", 281 "src/js/proxy.js",
282 "src/js/generator.js", 282 "src/js/generator.js",
283 "src/js/harmony-atomics.js", 283 "src/js/harmony-atomics.js",
284 "src/js/harmony-regexp.js", 284 "src/js/harmony-regexp.js",
285 "src/js/harmony-reflect.js", 285 "src/js/harmony-reflect.js",
286 "src/js/harmony-object-observe.js", 286 "src/js/harmony-object-observe.js",
287 "src/js/harmony-sharedarraybuffer.js", 287 "src/js/harmony-sharedarraybuffer.js",
288 "src/js/harmony-simd.js", 288 "src/js/harmony-simd.js",
289 "src/js/harmony-species.js",
289 "src/js/harmony-unicode-regexps.js", 290 "src/js/harmony-unicode-regexps.js",
290 "src/js/promise-extra.js" 291 "src/js/promise-extra.js"
291 ] 292 ]
292 293
293 outputs = [ 294 outputs = [
294 "$target_gen_dir/experimental-libraries.cc", 295 "$target_gen_dir/experimental-libraries.cc",
295 ] 296 ]
296 297
297 args = [ 298 args = [
298 rebase_path("$target_gen_dir/experimental-libraries.cc", 299 rebase_path("$target_gen_dir/experimental-libraries.cc",
(...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1856 if (!is_component_build) { 1857 if (!is_component_build) {
1857 sources += [ 1858 sources += [
1858 "$target_gen_dir/d8-js.cc", 1859 "$target_gen_dir/d8-js.cc",
1859 ] 1860 ]
1860 } 1861 }
1861 if (v8_enable_i18n_support) { 1862 if (v8_enable_i18n_support) {
1862 deps += [ "//third_party/icu" ] 1863 deps += [ "//third_party/icu" ]
1863 } 1864 }
1864 } 1865 }
1865 } 1866 }
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