--
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev+unsubscribe@chromium.org.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-dev...@chromium.org.
/src/third_party/WebKit/Source/web
if (is_linux) { executable("hello_world1") {
d1 = []
d1 = "/home/c/chromium1/src/third_party/WebKit/Source/"
d2 = "/home/c/chromium1/src/third_party/WebKit/Source/platform/geometry/FloatPoint.h"
include_dirs = [d1,d2]
sources = [
"hello_world.cc",]
}
}
But yet it still doesn't include the dirctories that i need. Why does this method work on the chrome_initial executible but not my own executible. Is it because I am not including the right config files?
I add the following variables to the very bottom of the gni folder located at: //src/third_party/WebKit/Source/config.gni
if (is_linux) {
d1 = "//third_party/WebKit/Source/"
d1 = "/home/c/chromium1/src/third_party/WebKit/Source/"
}