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

Side by Side Diff: BUILD.gn

Issue 1493713004: Revert of Disable non-standard Promise functions in staging (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 "src/js/macros.py", 313 "src/js/macros.py",
314 "src/messages.h", 314 "src/messages.h",
315 "src/js/proxy.js", 315 "src/js/proxy.js",
316 "src/js/generator.js", 316 "src/js/generator.js",
317 "src/js/harmony-atomics.js", 317 "src/js/harmony-atomics.js",
318 "src/js/harmony-array-includes.js", 318 "src/js/harmony-array-includes.js",
319 "src/js/harmony-regexp.js", 319 "src/js/harmony-regexp.js",
320 "src/js/harmony-reflect.js", 320 "src/js/harmony-reflect.js",
321 "src/js/harmony-object-observe.js", 321 "src/js/harmony-object-observe.js",
322 "src/js/harmony-sharedarraybuffer.js", 322 "src/js/harmony-sharedarraybuffer.js",
323 "src/js/harmony-simd.js", 323 "src/js/harmony-simd.js"
324 "src/js/promise-extra.js"
325 ] 324 ]
326 325
327 outputs = [ 326 outputs = [
328 "$target_gen_dir/experimental-libraries.cc", 327 "$target_gen_dir/experimental-libraries.cc",
329 ] 328 ]
330 329
331 args = [ 330 args = [
332 rebase_path("$target_gen_dir/experimental-libraries.cc", 331 rebase_path("$target_gen_dir/experimental-libraries.cc",
333 root_build_dir), 332 root_build_dir),
334 "EXPERIMENTAL", 333 "EXPERIMENTAL",
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1869 if (!is_component_build) { 1868 if (!is_component_build) {
1870 sources += [ 1869 sources += [
1871 "$target_gen_dir/d8-js.cc", 1870 "$target_gen_dir/d8-js.cc",
1872 ] 1871 ]
1873 } 1872 }
1874 if (v8_enable_i18n_support) { 1873 if (v8_enable_i18n_support) {
1875 deps += [ "//third_party/icu" ] 1874 deps += [ "//third_party/icu" ]
1876 } 1875 }
1877 } 1876 }
1878 } 1877 }
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