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

Side by Side Diff: BUILD.gn

Issue 1700003002: [esnext] implement String padding proposal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove ToObject Created 4 years, 9 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 "src/js/macros.py", 303 "src/js/macros.py",
304 "src/messages.h", 304 "src/messages.h",
305 "src/js/generator.js", 305 "src/js/generator.js",
306 "src/js/harmony-atomics.js", 306 "src/js/harmony-atomics.js",
307 "src/js/harmony-regexp.js", 307 "src/js/harmony-regexp.js",
308 "src/js/harmony-object-observe.js", 308 "src/js/harmony-object-observe.js",
309 "src/js/harmony-sharedarraybuffer.js", 309 "src/js/harmony-sharedarraybuffer.js",
310 "src/js/harmony-simd.js", 310 "src/js/harmony-simd.js",
311 "src/js/harmony-species.js", 311 "src/js/harmony-species.js",
312 "src/js/harmony-unicode-regexps.js", 312 "src/js/harmony-unicode-regexps.js",
313 "src/js/harmony-string-padding.js",
313 "src/js/promise-extra.js" 314 "src/js/promise-extra.js"
314 ] 315 ]
315 316
316 outputs = [ 317 outputs = [
317 "$target_gen_dir/experimental-libraries.cc", 318 "$target_gen_dir/experimental-libraries.cc",
318 ] 319 ]
319 320
320 args = [ 321 args = [
321 rebase_path("$target_gen_dir/experimental-libraries.cc", 322 rebase_path("$target_gen_dir/experimental-libraries.cc",
322 root_build_dir), 323 root_build_dir),
(...skipping 1771 matching lines...) Expand 10 before | Expand all | Expand 10 after
2094 2095
2095 configs -= [ "//build/config/compiler:chromium_code" ] 2096 configs -= [ "//build/config/compiler:chromium_code" ]
2096 configs += [ "//build/config/compiler:no_chromium_code" ] 2097 configs += [ "//build/config/compiler:no_chromium_code" ]
2097 configs += [ 2098 configs += [
2098 ":internal_config", 2099 ":internal_config",
2099 ":libplatform_config", 2100 ":libplatform_config",
2100 ":features", 2101 ":features",
2101 ":toolchain", 2102 ":toolchain",
2102 ] 2103 ]
2103 } 2104 }
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