Commit d230031e authored by jamesr@chromium.org's avatar jamesr@chromium.org

GN: Depend on actual v8, not a stub target

V8 has GN build files now, we don't need this stub any more.

Review URL: https://codereview.chromium.org/329813002

git-svn-id: svn://svn.chromium.org/blink/trunk@176045 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 36a3619c
...@@ -131,7 +131,6 @@ source_set("prerequisites") { ...@@ -131,7 +131,6 @@ source_set("prerequisites") {
"//third_party/WebKit/Source:config", "//third_party/WebKit/Source:config",
"//third_party/WebKit/Source:inside_blink", "//third_party/WebKit/Source:inside_blink",
"//third_party/WebKit/Source:npapi_stub", "//third_party/WebKit/Source:npapi_stub",
"//third_party/WebKit/Source/platform:v8_stub_config",
] ]
} }
...@@ -168,7 +167,6 @@ source_set("core") { ...@@ -168,7 +167,6 @@ source_set("core") {
direct_dependent_configs = [ direct_dependent_configs = [
":core_include_dirs", ":core_include_dirs",
"//third_party/WebKit/Source:npapi_stub", "//third_party/WebKit/Source:npapi_stub",
"//third_party/WebKit/Source/platform:v8_stub_config",
] ]
# TODO(GYP) IPP libraries pkg-config. These seem to be experimental and used # TODO(GYP) IPP libraries pkg-config. These seem to be experimental and used
...@@ -395,8 +393,6 @@ source_set("core_generated") { ...@@ -395,8 +393,6 @@ source_set("core_generated") {
configs += [ configs += [
"..:inside_blink", "..:inside_blink",
# TODO(GYP) erase when v8 is ported.
"../platform:v8_stub_config",
"..:npapi_stub", "..:npapi_stub",
] ]
......
...@@ -173,7 +173,6 @@ component("platform") { ...@@ -173,7 +173,6 @@ component("platform") {
get_target_outputs(":color_data") get_target_outputs(":color_data")
configs += [ configs += [
":v8_stub_config",
"//third_party/WebKit/Source:config", "//third_party/WebKit/Source:config",
"//third_party/WebKit/Source:non_test_config", "//third_party/WebKit/Source:non_test_config",
] ]
...@@ -204,9 +203,7 @@ component("platform") { ...@@ -204,9 +203,7 @@ component("platform") {
"//third_party/WebKit/Source/platform/heap", "//third_party/WebKit/Source/platform/heap",
"//url", "//url",
#'blink_heap_asm_stubs', #'blink_heap_asm_stubs',
# TODO(GYP) also remove v8_stub_config when this is added, and uncomment "//v8",
# V8 in the forward statement below.
#"//v8",
] ]
forward_dependent_configs_from = [ forward_dependent_configs_from = [
...@@ -219,8 +216,7 @@ component("platform") { ...@@ -219,8 +216,7 @@ component("platform") {
"//third_party/ots", "//third_party/ots",
"//third_party/qcms", "//third_party/qcms",
"//url", "//url",
# TODO(GYP) "//v8",
#"//v8",
] ]
if (is_mac) { if (is_mac) {
...@@ -457,9 +453,3 @@ if (cpu_arch == "arm") { ...@@ -457,9 +453,3 @@ if (cpu_arch == "arm") {
deps = [ ":blink_common" ] deps = [ ":blink_common" ]
} }
} }
# This config is a placeholder to set up the V8 include path while the V8 GN
# build is being worked on.
config("v8_stub_config") {
include_dirs = [ "//v8/include" ]
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment