|
@@ -1,11 +1,6 @@
|
|
|
shared_library("LibJS") {
|
|
|
output_name = "js"
|
|
|
- include_dirs = [
|
|
|
- "//Userland/Libraries",
|
|
|
-
|
|
|
- # FIXME: Why does LibSyntax need to depend on WindowServer headers?
|
|
|
- "//Userland",
|
|
|
- ]
|
|
|
+ include_dirs = [ "//Userland/Libraries" ]
|
|
|
cflags_cc = [ "-fno-omit-frame-pointer" ]
|
|
|
deps = [
|
|
|
"//AK",
|
|
@@ -88,6 +83,7 @@ shared_library("LibJS") {
|
|
|
"Runtime/BoundFunction.cpp",
|
|
|
"Runtime/Completion.cpp",
|
|
|
"Runtime/ConsoleObject.cpp",
|
|
|
+ "Runtime/ConsoleObjectPrototype.cpp",
|
|
|
"Runtime/DataView.cpp",
|
|
|
"Runtime/DataViewConstructor.cpp",
|
|
|
"Runtime/DataViewPrototype.cpp",
|
|
@@ -167,6 +163,7 @@ shared_library("LibJS") {
|
|
|
"Runtime/IteratorPrototype.cpp",
|
|
|
"Runtime/JSONObject.cpp",
|
|
|
"Runtime/JobCallback.cpp",
|
|
|
+ "Runtime/KeyedCollections.cpp",
|
|
|
"Runtime/Map.cpp",
|
|
|
"Runtime/MapConstructor.cpp",
|
|
|
"Runtime/MapIterator.cpp",
|
|
@@ -266,6 +263,7 @@ shared_library("LibJS") {
|
|
|
"Runtime/TypedArray.cpp",
|
|
|
"Runtime/TypedArrayConstructor.cpp",
|
|
|
"Runtime/TypedArrayPrototype.cpp",
|
|
|
+ "Runtime/Uint8Array.cpp",
|
|
|
"Runtime/Utf16String.cpp",
|
|
|
"Runtime/VM.cpp",
|
|
|
"Runtime/Value.cpp",
|