diff options
author | Michal Klocek <michal.klocek@qt.io> | 2016-12-07 17:37:23 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2022-12-13 16:42:14 +0100 |
commit | 2ab84823b6fb5b928686c0e7d453d3a9e295c712 (patch) | |
tree | 7dba765e7ad1f50acbcb2fc286bad2b6d7bda6af /chromium/remoting/host/BUILD.gn | |
parent | 57ff20b80a2785f8ded69f5ca3f3ad53ae7deb7a (diff) | |
download | qtwebengine-chromium-2ab84823b6fb5b928686c0e7d453d3a9e295c712.tar.gz |
Qt GN integration
- Exclude source files we override in the qt webengine sources.
- Add TOOLKIT_QT define for use_qt
- Add is_shared GN argument
Change-Id: I79925220265602bd0c39e5e03162cf1dca15befe
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/remoting/host/BUILD.gn')
-rw-r--r-- | chromium/remoting/host/BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/remoting/host/BUILD.gn b/chromium/remoting/host/BUILD.gn index 852c12a5c15..b5b58ef355f 100644 --- a/chromium/remoting/host/BUILD.gn +++ b/chromium/remoting/host/BUILD.gn @@ -508,7 +508,7 @@ static_library("common") { "//ui/events/platform/x11", "//ui/gfx/x", ] - if (is_linux) { + if (use_gtk) { deps += [ "//build/config/linux/gtk" ] } } else if (remoting_use_wayland && is_linux) { @@ -1055,7 +1055,7 @@ if (enable_me2me_host) { deps += [ "//components/policy:generated" ] } - if (is_linux || is_chromeos_lacros) { + if (use_gtk) { deps += [ "//build/config/linux/gtk" ] } if (is_linux || is_chromeos_lacros || is_mac) { |