summaryrefslogtreecommitdiffstats
path: root/content/BUILD.gn
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 20:26:48 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-05 20:26:48 +0000
commit229094b938e29f8b7118cfb949112575295cd92d (patch)
tree9ec7899adb3421a940e668980ca28ebacb415473 /content/BUILD.gn
parent51c9abfa3e4dc0d11d26f885bb76461584288185 (diff)
downloadchromium_src-229094b938e29f8b7118cfb949112575295cd92d.zip
chromium_src-229094b938e29f8b7118cfb949112575295cd92d.tar.gz
chromium_src-229094b938e29f8b7118cfb949112575295cd92d.tar.bz2
Hook up V8 to more of the GN build.
Implement webkit/common/gpu. Minor fixes to the gin unit tests (it defines its own test runner so shouldn't depend on run_all_unittests -- GN found this because run_all_unittests in the GN build is a source_set instead of a static library and results in a duplicate definition). R=jochen@chromium.org Review URL: https://codereview.chromium.org/319583004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275233 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/BUILD.gn')
-rw-r--r--content/BUILD.gn6
1 files changed, 4 insertions, 2 deletions
diff --git a/content/BUILD.gn b/content/BUILD.gn
index d065e1b..3be5542 100644
--- a/content/BUILD.gn
+++ b/content/BUILD.gn
@@ -58,8 +58,10 @@ config("libjingle_stub_config") {
}
}
-# This config is a placeholder to set up the V8 include path while the V8 GN
-# build is being worked on.
+# This config is a placeholder to set up the V8 include path while Blink is
+# being worked on. Some targets include blink headers which include "v8.h",
+# expecting //v8/include to be on the include search path. We need to track
+# this down and set the include paths properly.
config("v8_stub_config") {
include_dirs = [ "//v8/include" ]
}