| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("crash_report") { | 5 source_set("crash_report") { |
| 6 sources = [ | 6 sources = [ |
| 7 "breakpad_helper.h", | 7 "breakpad_helper.h", |
| 8 "breakpad_helper.mm", | 8 "breakpad_helper.mm", |
| 9 "crash_keys.cc", | 9 "crash_keys.cc", |
| 10 "crash_keys.h", | 10 "crash_keys.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 } | 31 } |
| 32 | 32 |
| 33 source_set("crash_report_internal") { | 33 source_set("crash_report_internal") { |
| 34 sources = [ | 34 sources = [ |
| 35 "crash_report_helper.h", | 35 "crash_report_helper.h", |
| 36 "crash_report_helper.mm", | 36 "crash_report_helper.mm", |
| 37 "crash_restore_helper.h", | 37 "crash_restore_helper.h", |
| 38 "crash_restore_helper.mm", | 38 "crash_restore_helper.mm", |
| 39 ] | 39 ] |
| 40 deps = [ | 40 deps = [ |
| 41 ":crash_report", |
| 41 "//base", | 42 "//base", |
| 42 "//components/infobars/core", | 43 "//components/infobars/core", |
| 43 "//components/sessions", | 44 "//components/sessions", |
| 44 "//components/strings", | 45 "//components/strings", |
| 45 "//components/upload_list", | 46 "//components/upload_list", |
| 46 "//ios/chrome/app/theme", | 47 "//ios/chrome/app/theme", |
| 47 "//ios/chrome/browser", | 48 "//ios/chrome/browser", |
| 48 "//ios/chrome/browser/browser_state", | 49 "//ios/chrome/browser/browser_state", |
| 49 "//ios/chrome/browser/crash_report", | |
| 50 "//ios/chrome/browser/sessions", | 50 "//ios/chrome/browser/sessions", |
| 51 "//ios/chrome/browser/tabs", | 51 "//ios/chrome/browser/tabs", |
| 52 "//ios/web", | 52 "//ios/web", |
| 53 "//net", | 53 "//net", |
| 54 "//ui/base", | 54 "//ui/base", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 source_set("unit_tests") { | 58 source_set("unit_tests") { |
| 59 testonly = true | 59 testonly = true |
| 60 sources = [ | 60 sources = [ |
| 61 "breakpad_helper_unittest.mm", | 61 "breakpad_helper_unittest.mm", |
| 62 "crash_restore_helper_unittest.mm", | 62 "crash_restore_helper_unittest.mm", |
| 63 ] | 63 ] |
| 64 deps = [ | 64 deps = [ |
| 65 ":crash_report", |
| 65 ":crash_report_internal", | 66 ":crash_report_internal", |
| 66 "//base", | 67 "//base", |
| 67 "//breakpad:client", | 68 "//breakpad:client", |
| 68 "//ios/chrome/browser/browser_state", | 69 "//ios/chrome/browser/browser_state", |
| 69 "//ios/chrome/browser/browser_state:test_support", | 70 "//ios/chrome/browser/browser_state:test_support", |
| 70 "//ios/chrome/browser/crash_report", | |
| 71 "//ios/chrome/browser/sessions", | 71 "//ios/chrome/browser/sessions", |
| 72 "//ios/chrome/test/base", | 72 "//ios/chrome/test/base", |
| 73 "//ios/chrome/test/ocmock", | 73 "//ios/chrome/test/ocmock", |
| 74 "//ios/web:test_support", | 74 "//ios/web:test_support", |
| 75 "//testing/gmock", | 75 "//testing/gmock", |
| 76 "//testing/gtest", | 76 "//testing/gtest", |
| 77 "//third_party/ocmock", | 77 "//third_party/ocmock", |
| 78 ] | 78 ] |
| 79 } | 79 } |
| OLD | NEW |