| 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 source_set("lib") { | 10 static_library("lib") { |
| 11 sources = [ | 11 sources = [ |
| 12 "crash_keys_win.cc", | 12 "crash_keys_win.cc", |
| 13 "crash_keys_win.h", | 13 "crash_keys_win.h", |
| 14 "crash_reporter_client.cc", | 14 "crash_reporter_client.cc", |
| 15 "crash_reporter_client.h", | 15 "crash_reporter_client.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 include_dirs = [ "../../../../breakpad/src" ] | 18 include_dirs = [ "../../../../breakpad/src" ] |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 ":lib", | 205 ":lib", |
| 206 "//base", | 206 "//base", |
| 207 "//testing/gmock", | 207 "//testing/gmock", |
| 208 "//testing/gtest", | 208 "//testing/gtest", |
| 209 ] | 209 ] |
| 210 | 210 |
| 211 if (is_win) { | 211 if (is_win) { |
| 212 deps += [ "//breakpad:client" ] | 212 deps += [ "//breakpad:client" ] |
| 213 } | 213 } |
| 214 } | 214 } |
| OLD | NEW |