build: [gn] depend on /gtk instead of /gtk3
(We still depend on gtk3, just via one extra layer of abstraction. The /gtk target itself depends on /gtk3.)
This commit is contained in:
parent
62f62264da
commit
9241645a4b
2 changed files with 2 additions and 2 deletions
2
BUILD.gn
2
BUILD.gn
|
@ -254,7 +254,7 @@ static_library("electron_lib") {
|
||||||
}
|
}
|
||||||
if (is_linux) {
|
if (is_linux) {
|
||||||
deps += [
|
deps += [
|
||||||
"//build/config/linux/gtk3",
|
"//build/config/linux/gtk",
|
||||||
"//chrome/browser/ui/libgtkui",
|
"//chrome/browser/ui/libgtkui",
|
||||||
"//device/bluetooth",
|
"//device/bluetooth",
|
||||||
"//ui/events/devices/x11",
|
"//ui/events/devices/x11",
|
||||||
|
|
|
@ -51,7 +51,7 @@ static_library("brightray") {
|
||||||
|
|
||||||
if (is_linux) {
|
if (is_linux) {
|
||||||
deps += [
|
deps += [
|
||||||
"//build/config/linux/gtk3",
|
"//build/config/linux/gtk",
|
||||||
":libnotify",
|
":libnotify",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue