summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/all.gyp5
-rw-r--r--tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp17
2 files changed, 22 insertions, 0 deletions
diff --git a/build/all.gyp b/build/all.gyp
index a55b2c0..c50921f 100644
--- a/build/all.gyp
+++ b/build/all.gyp
@@ -25,6 +25,11 @@
'../net/net.gyp:*',
],
'conditions': [
+ ['OS=="linux"', {
+ 'dependencies': [
+ '../tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp:*',
+ ],
+ }],
['OS=="win"', {
'dependencies': [
'../sandbox/sandbox.gyp:*',
diff --git a/tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp b/tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp
new file mode 100644
index 0000000..f4f8da4
--- /dev/null
+++ b/tools/gtk_clipboard_dump/gtk_clipboard_dump.gyp
@@ -0,0 +1,17 @@
+{
+ 'includes': [
+ '../../build/common.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'gtk_clipboard_dump',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../build/linux/system.gyp:gtk',
+ ],
+ 'sources': [
+ 'gtk_clipboard_dump.cc',
+ ],
+ },
+ ],
+}