diff options
-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 |