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

Side by Side Diff: chrome/installer/util/BUILD.gn

Issue 1612663002: Use a valid /prefetch argument when launching a process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bit
Patch Set: address comments from gab #13 Created 4 years, 10 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
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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 # This file deliberately has no default "util" target so dependants have to 8 # This file deliberately has no default "util" target so dependants have to
9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random 9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random
10 # code that ends up getting linked into chrome proper should depend on the 10 # code that ends up getting linked into chrome proper should depend on the
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 ] 102 ]
103 103
104 deps += [ 104 deps += [
105 # Need to depend on the generated strings target since files here 105 # Need to depend on the generated strings target since files here
106 # depend on the generated header, but only depend on the ":strings" 106 # depend on the generated header, but only depend on the ":strings"
107 # target (which actually compiles and causes the generated code to be 107 # target (which actually compiles and causes the generated code to be
108 # linked) from the ":util" target. 108 # linked) from the ":util" target.
109 ":generate_strings", 109 ":generate_strings",
110 "//base/third_party/dynamic_annotations", 110 "//base/third_party/dynamic_annotations",
111 "//components/metrics", 111 "//components/metrics",
112
113 # TODO(fdoray): Remove this once the PreRead field trial has expired.
114 # crbug.com/577698
115 "//components/startup_metric_utils/common",
112 "//courgette:courgette_lib", 116 "//courgette:courgette_lib",
113 "//crypto", 117 "//crypto",
114 "//third_party/bspatch", 118 "//third_party/bspatch",
115 "//third_party/crashpad/crashpad/client", 119 "//third_party/crashpad/crashpad/client",
116 "//third_party/icu", 120 "//third_party/icu",
117 "//third_party/lzma_sdk", 121 "//third_party/lzma_sdk",
118 ] 122 ]
119 123
120 configs += [ 124 configs += [
121 "//build/config:precompiled_headers", 125 "//build/config:precompiled_headers",
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 "//chrome/installer/test:alternate_version_generator_lib", 340 "//chrome/installer/test:alternate_version_generator_lib",
337 "//components/variations", 341 "//components/variations",
338 "//content/public/common", 342 "//content/public/common",
339 "//testing/gmock", 343 "//testing/gmock",
340 "//testing/gtest", 344 "//testing/gtest",
341 ] 345 ]
342 346
343 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install er.exe.manifest 347 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install er.exe.manifest
344 } 348 }
345 } # is_win 349 } # is_win
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698