| 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 30 matching lines...) Expand all Loading... |
| 41 ":crash_report", | 41 ":crash_report", |
| 42 "//base", | 42 "//base", |
| 43 "//components/infobars/core", | 43 "//components/infobars/core", |
| 44 "//components/sessions", | 44 "//components/sessions", |
| 45 "//components/strings", | 45 "//components/strings", |
| 46 "//components/upload_list", | 46 "//components/upload_list", |
| 47 "//ios/chrome/app/theme", | 47 "//ios/chrome/app/theme", |
| 48 "//ios/chrome/browser", | 48 "//ios/chrome/browser", |
| 49 "//ios/chrome/browser/browser_state", | 49 "//ios/chrome/browser/browser_state", |
| 50 "//ios/chrome/browser/sessions", | 50 "//ios/chrome/browser/sessions", |
| 51 "//ios/chrome/browser/sessions:serialisation", |
| 51 "//ios/chrome/browser/tabs", | 52 "//ios/chrome/browser/tabs", |
| 52 "//ios/web", | 53 "//ios/web", |
| 53 "//net", | 54 "//net", |
| 54 "//ui/base", | 55 "//ui/base", |
| 55 ] | 56 ] |
| 56 } | 57 } |
| 57 | 58 |
| 58 source_set("unit_tests") { | 59 source_set("unit_tests") { |
| 59 configs += [ "//build/config/compiler:enable_arc" ] | 60 configs += [ "//build/config/compiler:enable_arc" ] |
| 60 testonly = true | 61 testonly = true |
| 61 sources = [ | 62 sources = [ |
| 62 "breakpad_helper_unittest.mm", | 63 "breakpad_helper_unittest.mm", |
| 63 "crash_restore_helper_unittest.mm", | 64 "crash_restore_helper_unittest.mm", |
| 64 ] | 65 ] |
| 65 deps = [ | 66 deps = [ |
| 66 ":crash_report", | 67 ":crash_report", |
| 67 ":crash_report_internal", | 68 ":crash_report_internal", |
| 68 "//base", | 69 "//base", |
| 69 "//breakpad:client", | 70 "//breakpad:client", |
| 70 "//ios/chrome/browser/browser_state", | 71 "//ios/chrome/browser/browser_state", |
| 71 "//ios/chrome/browser/browser_state:test_support", | 72 "//ios/chrome/browser/browser_state:test_support", |
| 72 "//ios/chrome/browser/sessions", | 73 "//ios/chrome/browser/sessions:serialisation", |
| 73 "//ios/chrome/test/base", | 74 "//ios/chrome/test/base", |
| 74 "//ios/chrome/test/ocmock", | 75 "//ios/chrome/test/ocmock", |
| 75 "//ios/web:test_support", | 76 "//ios/web:test_support", |
| 76 "//testing/gmock", | 77 "//testing/gmock", |
| 77 "//testing/gtest", | 78 "//testing/gtest", |
| 78 "//third_party/ocmock", | 79 "//third_party/ocmock", |
| 79 ] | 80 ] |
| 80 } | 81 } |
| OLD | NEW |