summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-25 16:29:02 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-25 16:29:02 +0000
commit42fc3155c8fd9923bfe4f854bc9d6e67bb5cdb12 (patch)
tree47dea00a3bf418d3d8ea56e0320752f37fa30ea8
parent499d90448e2bdcff7583c20a4cd483f963b39463 (diff)
downloadchromium_src-42fc3155c8fd9923bfe4f854bc9d6e67bb5cdb12.zip
chromium_src-42fc3155c8fd9923bfe4f854bc9d6e67bb5cdb12.tar.gz
chromium_src-42fc3155c8fd9923bfe4f854bc9d6e67bb5cdb12.tar.bz2
Add a gtk_clipboard_dump target with a new .gyp file.
Review URL: http://codereview.chromium.org/42593 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12454 0039d316-1c4b-4281-b951-d872f2087c98
-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',
+ ],
+ },
+ ],
+}