Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: tools/gtk_clipboard_dump/gcd.scons

Issue 14175: Add a small utility for dumping the system clipboard's contents on GTK. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/SConscript.main ('k') | tools/gtk_clipboard_dump/gtk_clipboard_dump.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gtk_clipboard_dump/gcd.scons
===================================================================
--- tools/gtk_clipboard_dump/gcd.scons (revision 0)
+++ tools/gtk_clipboard_dump/gcd.scons (revision 0)
@@ -0,0 +1,19 @@
+Import('env')
+
+if not env.Bit('linux'):
+ Return()
+
+env = env.Clone()
+
+env.Prepend(
+ CPPPATH = [
+ '$CHROME_SRC_DIR',
+ ],
+)
+
+input_files = [
+ 'gtk_clipboard_dump.cc',
+]
+
+env.ChromeProgram('gtk_clipboard_dump', input_files)
+
« no previous file with comments | « build/SConscript.main ('k') | tools/gtk_clipboard_dump/gtk_clipboard_dump.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698