| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 deps = [ | 66 deps = [ |
| 67 ":crash_report", | 67 ":crash_report", |
| 68 ":crash_report_internal", | 68 ":crash_report_internal", |
| 69 "//base", | 69 "//base", |
| 70 "//breakpad:client", | 70 "//breakpad:client", |
| 71 "//ios/chrome/browser/browser_state", | 71 "//ios/chrome/browser/browser_state", |
| 72 "//ios/chrome/browser/browser_state:test_support", | 72 "//ios/chrome/browser/browser_state:test_support", |
| 73 "//ios/chrome/browser/sessions:serialisation", | 73 "//ios/chrome/browser/sessions:serialisation", |
| 74 "//ios/chrome/test/base", | 74 "//ios/chrome/test/base", |
| 75 "//ios/chrome/test/ocmock", | 75 "//ios/chrome/test/ocmock", |
| 76 "//ios/web:test_support", | 76 "//ios/web/public/test:test_support", |
| 77 "//testing/gmock", | 77 "//testing/gmock", |
| 78 "//testing/gtest", | 78 "//testing/gtest", |
| 79 "//third_party/ocmock", | 79 "//third_party/ocmock", |
| 80 ] | 80 ] |
| 81 } | 81 } |
| OLD | NEW |