diff options
Diffstat (limited to 'build/linux/system.gyp')
-rw-r--r-- | build/linux/system.gyp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp index 59fc13a..5333798 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -91,6 +91,30 @@ # added back to Chrome OS and Ozone. Don't try to use GTK on Chrome OS and Ozone. 'targets': [ { + 'target_name': 'atk', + 'type': 'none', + 'conditions': [ + ['_toolset=="target"', { + 'direct_dependent_settings': { + 'cflags': [ + '<!@(<(pkg-config) --cflags atk)', + ], + 'defines': [ + 'ATK_LIB_DIR="<!@(<(pkg-config) --variable=libdir atk)"', + ], + }, + 'link_settings': { + 'ldflags': [ + '<!@(<(pkg-config) --libs-only-L --libs-only-other atk)', + ], + 'libraries': [ + '<!@(<(pkg-config) --libs-only-l atk)', + ], + }, + }], + ], + }, + { 'target_name': 'gdk', 'type': 'none', 'conditions': [ |