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

Unified Diff: BUILD.gn

Issue 2142933003: Move Error methods to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Handle exception in GetProperty Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/accessors.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index af6e01d5cbf2670a204a2fd2710289908c887005..d7237da1b23aaff0c07e4c4fca3ca257b448abe2 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -653,9 +653,13 @@ action("run_mksnapshot") {
action("run_mkpeephole") {
visibility = [ ":*" ] # Only targets in this file can depend on this.
- deps = [ ":mkpeephole($v8_snapshot_toolchain)" ]
+ deps = [
+ ":mkpeephole($v8_snapshot_toolchain)",
+ ]
- outputs = [ v8_generated_peephole_source ]
+ outputs = [
+ v8_generated_peephole_source,
+ ]
sources = []
@@ -877,6 +881,7 @@ v8_source_set("v8_base") {
"src/builtins/builtins-boolean.cc",
"src/builtins/builtins-dataview.cc",
"src/builtins/builtins-date.cc",
+ "src/builtins/builtins-error.cc",
"src/builtins/builtins-function.cc",
"src/builtins/builtins-global.cc",
"src/builtins/builtins-internal.cc",
« no previous file with comments | « no previous file | src/accessors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698