summaryrefslogtreecommitdiffstats
path: root/tools/gtk_clipboard_dump/gcd.scons
blob: 57117f9d674020eb02aa164d13419815498d80e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)