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

Side by Side Diff: BUILD.gn

Issue 2026643003: [json] replace remaining json.js code with C++ builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix error message Created 4 years, 6 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 "src/third_party/fdlibm/fdlibm.js", 352 "src/third_party/fdlibm/fdlibm.js",
353 "src/js/regexp.js", 353 "src/js/regexp.js",
354 "src/js/arraybuffer.js", 354 "src/js/arraybuffer.js",
355 "src/js/typedarray.js", 355 "src/js/typedarray.js",
356 "src/js/iterator-prototype.js", 356 "src/js/iterator-prototype.js",
357 "src/js/collection.js", 357 "src/js/collection.js",
358 "src/js/weak-collection.js", 358 "src/js/weak-collection.js",
359 "src/js/collection-iterator.js", 359 "src/js/collection-iterator.js",
360 "src/js/promise.js", 360 "src/js/promise.js",
361 "src/js/messages.js", 361 "src/js/messages.js",
362 "src/js/json.js",
363 "src/js/array-iterator.js", 362 "src/js/array-iterator.js",
364 "src/js/string-iterator.js", 363 "src/js/string-iterator.js",
365 "src/js/templates.js", 364 "src/js/templates.js",
366 "src/js/spread.js", 365 "src/js/spread.js",
367 "src/js/proxy.js", 366 "src/js/proxy.js",
368 "src/debug/mirrors.js", 367 "src/debug/mirrors.js",
369 "src/debug/debug.js", 368 "src/debug/debug.js",
370 "src/debug/liveedit.js", 369 "src/debug/liveedit.js",
371 ] 370 ]
372 371
(...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after
1382 "src/runtime/runtime-compiler.cc", 1381 "src/runtime/runtime-compiler.cc",
1383 "src/runtime/runtime-date.cc", 1382 "src/runtime/runtime-date.cc",
1384 "src/runtime/runtime-debug.cc", 1383 "src/runtime/runtime-debug.cc",
1385 "src/runtime/runtime-forin.cc", 1384 "src/runtime/runtime-forin.cc",
1386 "src/runtime/runtime-function.cc", 1385 "src/runtime/runtime-function.cc",
1387 "src/runtime/runtime-futex.cc", 1386 "src/runtime/runtime-futex.cc",
1388 "src/runtime/runtime-generator.cc", 1387 "src/runtime/runtime-generator.cc",
1389 "src/runtime/runtime-i18n.cc", 1388 "src/runtime/runtime-i18n.cc",
1390 "src/runtime/runtime-internal.cc", 1389 "src/runtime/runtime-internal.cc",
1391 "src/runtime/runtime-interpreter.cc", 1390 "src/runtime/runtime-interpreter.cc",
1392 "src/runtime/runtime-json.cc",
1393 "src/runtime/runtime-literals.cc", 1391 "src/runtime/runtime-literals.cc",
1394 "src/runtime/runtime-liveedit.cc", 1392 "src/runtime/runtime-liveedit.cc",
1395 "src/runtime/runtime-maths.cc", 1393 "src/runtime/runtime-maths.cc",
1396 "src/runtime/runtime-numbers.cc", 1394 "src/runtime/runtime-numbers.cc",
1397 "src/runtime/runtime-object.cc", 1395 "src/runtime/runtime-object.cc",
1398 "src/runtime/runtime-operators.cc", 1396 "src/runtime/runtime-operators.cc",
1399 "src/runtime/runtime-proxy.cc", 1397 "src/runtime/runtime-proxy.cc",
1400 "src/runtime/runtime-regexp.cc", 1398 "src/runtime/runtime-regexp.cc",
1401 "src/runtime/runtime-scopes.cc", 1399 "src/runtime/runtime-scopes.cc",
1402 "src/runtime/runtime-simd.cc", 1400 "src/runtime/runtime-simd.cc",
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
2229 sources = [ 2227 sources = [
2230 "test/fuzzer/wasm-asmjs.cc", 2228 "test/fuzzer/wasm-asmjs.cc",
2231 ] 2229 ]
2232 2230
2233 deps = [ 2231 deps = [
2234 ":fuzzer_support", 2232 ":fuzzer_support",
2235 ] 2233 ]
2236 2234
2237 configs = [ ":internal_config" ] 2235 configs = [ ":internal_config" ]
2238 } 2236 }
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