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 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 } | 7 } |
8 | 8 |
9 source_set("lib") { | 9 source_set("lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 public_deps = [ | 42 public_deps = [ |
43 ":app_non_mac_win", | 43 ":app_non_mac_win", |
44 "//third_party/kasko", | 44 "//third_party/kasko", |
45 ] | 45 ] |
46 deps = [ | 46 deps = [ |
47 "//base", | 47 "//base", |
48 "//third_party/kasko", | 48 "//third_party/kasko", |
49 ] | 49 ] |
50 | 50 |
51 deps += [ ":lib" ] | 51 deps += [ ":lib" ] |
| 52 if (is_win) { |
| 53 deps += [ |
| 54 # TODO(fdoray): Remove this once the PreRead field trial has expired. |
| 55 # crbug.com/577698 |
| 56 "//components/startup_metric_utils/common", |
| 57 "//content/public/common", |
| 58 ] |
| 59 } |
52 if (is_mac || is_win) { | 60 if (is_mac || is_win) { |
53 deps += [ "//third_party/crashpad/crashpad/client" ] | 61 deps += [ "//third_party/crashpad/crashpad/client" ] |
54 } | 62 } |
55 } | 63 } |
56 | 64 |
57 # TODO(mark): https://crbug.com/466890: merge this target with | 65 # TODO(mark): https://crbug.com/466890: merge this target with |
58 # crash_component. | 66 # crash_component. |
59 # | 67 # |
60 # This is a temporary base target that is depended on by both | 68 # This is a temporary base target that is depended on by both |
61 # crash_component and crash_component_breakpad_mac_to_be_deleted. It | 69 # crash_component and crash_component_breakpad_mac_to_be_deleted. It |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 | 175 |
168 if (is_mac) { | 176 if (is_mac) { |
169 deps += [ "//breakpad" ] | 177 deps += [ "//breakpad" ] |
170 } | 178 } |
171 | 179 |
172 if (is_win) { | 180 if (is_win) { |
173 deps += [ "//breakpad:breakpad_handler" ] | 181 deps += [ "//breakpad:breakpad_handler" ] |
174 } | 182 } |
175 } | 183 } |
176 } | 184 } |
OLD | NEW |