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

Unified Diff: src/platform/window_manager/SConstruct

Issue 495008: wm: Include breakpad. (Closed)
Patch Set: Created 11 years 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 | « no previous file | src/platform/window_manager/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/window_manager/SConstruct
diff --git a/src/platform/window_manager/SConstruct b/src/platform/window_manager/SConstruct
index 4055a3847a9a8f4bd6beccf70fb4d701dac3aa4b..c9c59e9a83c758e53c6ea148e933ba61b9529516 100644
--- a/src/platform/window_manager/SConstruct
+++ b/src/platform/window_manager/SConstruct
@@ -89,6 +89,10 @@ wm_env['BUILDERS']['ProtocolBuffer'] = proto_builder
wm_env.ParseConfig('pkg-config --cflags --libs gdk-2.0 xcomposite libpcrecpp')
+breakpad_path = '../../third_party/google-breakpad/files/src/client/linux'
+wm_env['CPPPATH'].append(breakpad_path)
+wm_env['LIBPATH'].append(breakpad_path)
+
if os.system('pkg-config clutter-1.0') == 0:
wm_env.ParseConfig('pkg-config --cflags --libs clutter-1.0')
else:
@@ -138,7 +142,7 @@ srcs = Split('''\
''')
libtest = wm_env.Library('test', Split(srcs))
-wm_env['LIBS'] += [libwm_core, libwm_ipc]
+wm_env['LIBS'] += [libwm_core, libwm_ipc, 'libbreakpad']
wm_env.Program('wm', 'main.cc')
« no previous file with comments | « no previous file | src/platform/window_manager/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698