diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-14 22:12:29 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-14 22:12:29 +0000 |
commit | 0149a3e9f9461c9909a6013db39f67eb1648a1f2 (patch) | |
tree | 5e0f3ee927dd537292682c942297de629ba9d74e /chrome/gpu | |
parent | d2187f06adce75220421ec81c9afe18c4900fcbd (diff) | |
download | chromium_src-0149a3e9f9461c9909a6013db39f67eb1648a1f2.zip chromium_src-0149a3e9f9461c9909a6013db39f67eb1648a1f2.tar.gz chromium_src-0149a3e9f9461c9909a6013db39f67eb1648a1f2.tar.bz2 |
Include breakpad header.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/546044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36277 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/gpu')
-rw-r--r-- | chrome/gpu/DEPS | 4 | ||||
-rw-r--r-- | chrome/gpu/gpu_main.cc | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/chrome/gpu/DEPS b/chrome/gpu/DEPS new file mode 100644 index 0000000..beacfd9 --- /dev/null +++ b/chrome/gpu/DEPS @@ -0,0 +1,4 @@ +include_rules = [
+ "+chrome/app",
+]
+
diff --git a/chrome/gpu/gpu_main.cc b/chrome/gpu/gpu_main.cc index e60cffa..f4641ac 100644 --- a/chrome/gpu/gpu_main.cc +++ b/chrome/gpu/gpu_main.cc @@ -9,6 +9,10 @@ #include "chrome/gpu/gpu_process.h" #include "chrome/gpu/gpu_thread.h" +#if defined(USE_LINUX_BREAKPAD) +#include "chrome/app/breakpad_linux.h" +#endif + #if defined(OS_WIN) #include "app/win_util.h" #endif |