Index: components/crash/content/tools/BUILD.gn |
diff --git a/components/crash/content/tools/BUILD.gn b/components/crash/content/tools/BUILD.gn |
index 82f282bfdd17af536ea347e6d8c22edf75ec29db..17fa31836532a57e144e2f91bd671cbfa17bf997 100644 |
--- a/components/crash/content/tools/BUILD.gn |
+++ b/components/crash/content/tools/BUILD.gn |
@@ -2,17 +2,15 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-if (is_win) { |
- source_set("crash_service") { |
- sources = [ |
- "crash_service.cc", |
- "crash_service.h", |
- ] |
+source_set("crash_service") { |
scottmg
2015/12/02 21:46:32
Maybe an assert(is_win) here too? Or is it used el
|
+ sources = [ |
+ "crash_service.cc", |
+ "crash_service.h", |
+ ] |
- deps = [ |
- "//base", |
- "//breakpad:breakpad_handler", |
- "//breakpad:breakpad_sender", |
- ] |
- } |
+ deps = [ |
+ "//base", |
+ "//breakpad:breakpad_handler", |
+ "//breakpad:breakpad_sender", |
+ ] |
} |