| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 assert(!is_ios) | 5 assert(!is_ios) |
| 6 if (is_android) { | 6 if (is_android) { |
| 7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 static_library("lib") { | 10 static_library("lib") { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//base/test:test_support", | 231 "//base/test:test_support", |
| 232 "//testing/gmock", | 232 "//testing/gmock", |
| 233 "//testing/gtest", | 233 "//testing/gtest", |
| 234 ] | 234 ] |
| 235 | 235 |
| 236 if (is_win) { | 236 if (is_win) { |
| 237 deps += [ | 237 deps += [ |
| 238 ":run_as_crashpad_handler", | 238 ":run_as_crashpad_handler", |
| 239 "//breakpad:client", | 239 "//breakpad:client", |
| 240 "//third_party/crashpad/crashpad/client:client", | 240 "//third_party/crashpad/crashpad/client:client", |
| 241 "//third_party/crashpad/crashpad/compat", | |
| 242 "//third_party/crashpad/crashpad/snapshot:snapshot", | 241 "//third_party/crashpad/crashpad/snapshot:snapshot", |
| 243 "//third_party/crashpad/crashpad/util", | 242 "//third_party/crashpad/crashpad/util", |
| 244 ] | 243 ] |
| 245 } | 244 } |
| 246 } | 245 } |
| OLD | NEW |