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

Side by Side Diff: components/nacl/browser/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: self-review Created 4 years, 11 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/features.gni") 5 import("//build/config/features.gni")
6 6
7 assert(enable_nacl) 7 assert(enable_nacl)
8 8
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 deps += [ 57 deps += [
58 "//components/nacl/loader:nacl_helper_integration", 58 "//components/nacl/loader:nacl_helper_integration",
59 "//sandbox/linux:sandbox_services", 59 "//sandbox/linux:sandbox_services",
60 "//sandbox/linux:suid_sandbox_client", 60 "//sandbox/linux:suid_sandbox_client",
61 ] 61 ]
62 62
63 data_deps += [ "//components/nacl/loader:helper_nonsfi" ] 63 data_deps += [ "//components/nacl/loader:helper_nonsfi" ]
64 } 64 }
65 65
66 if (is_win) {
67 deps += [
68 # TODO(fdoray): Remove this once the PreRead field trial has expired.
69 # crbug.com/577698
70 "//components/startup_metric_utils/common",
71 ]
72 }
73
66 if (is_win && current_cpu == "x86") { 74 if (is_win && current_cpu == "x86") {
67 data_deps += [ "//components/nacl/broker:nacl64" ] 75 data_deps += [ "//components/nacl/broker:nacl64" ]
68 } 76 }
69 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698