OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |