Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(768)

Side by Side Diff: components/crash/content/app/BUILD.gn

Issue 2075693002: Always use a /prefetch:# switch when launching a process on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/crash.gypi ('k') | components/crash/content/app/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 source_set("lib") {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 public_deps = [ 47 public_deps = [
48 ":app_non_mac_win", 48 ":app_non_mac_win",
49 ":lib", 49 ":lib",
50 "//third_party/kasko", 50 "//third_party/kasko",
51 ] 51 ]
52 deps = [ 52 deps = [
53 "//base", 53 "//base",
54 ] 54 ]
55 55
56 if (is_win) {
57 deps += [
58 # TODO(fdoray): Remove this once the PreRead field trial has expired.
59 # crbug.com/577698
60 "//components/startup_metric_utils/common",
61 ]
62 }
63 if (is_mac || is_win) { 56 if (is_mac || is_win) {
64 deps += [ 57 deps += [
65 "//third_party/crashpad/crashpad/client", 58 "//third_party/crashpad/crashpad/client",
66 "//third_party/crashpad/crashpad/snapshot:snapshot_api", 59 "//third_party/crashpad/crashpad/snapshot:snapshot_api",
67 ] 60 ]
68 } 61 }
69 if (is_win) { 62 if (is_win) {
70 deps += [ "//third_party/crashpad/crashpad/handler:handler_lib" ] 63 deps += [ "//third_party/crashpad/crashpad/handler:handler_lib" ]
71 } 64 }
72 } 65 }
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 ":lib", 205 ":lib",
213 "//base", 206 "//base",
214 "//testing/gmock", 207 "//testing/gmock",
215 "//testing/gtest", 208 "//testing/gtest",
216 ] 209 ]
217 210
218 if (is_win) { 211 if (is_win) {
219 deps += [ "//breakpad:client" ] 212 deps += [ "//breakpad:client" ]
220 } 213 }
221 } 214 }
OLDNEW
« no previous file with comments | « components/crash.gypi ('k') | components/crash/content/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698