OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 | 7 |
8 # This file builds nacl64.exe, which is a 64-bit x86 Windows executable | 8 # This file builds nacl64.exe, which is a 64-bit x86 Windows executable |
9 # used only in the 32-bit x86 Windows build. The :broker code runs both | 9 # used only in the 32-bit x86 Windows build. The :broker code runs both |
10 # in nacl64.exe and in the 32-bit chrome executable, to launch | 10 # in nacl64.exe and in the 32-bit chrome executable, to launch |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 deps = [ | 101 deps = [ |
102 ":broker", | 102 ":broker", |
103 ":nacl64_content", | 103 ":nacl64_content", |
104 ":nacl64_crash_reporter_client", | 104 ":nacl64_crash_reporter_client", |
105 "//base", | 105 "//base", |
106 "//breakpad:breakpad_handler", | 106 "//breakpad:breakpad_handler", |
107 "//build/win:default_exe_manifest", | 107 "//build/win:default_exe_manifest", |
108 "//chrome:nacl64_exe_version", | 108 "//chrome:nacl64_exe_version", |
109 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 109 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
110 "//components/nacl/loader:nacl_helper_win_64", | 110 "//components/nacl/loader:nacl_helper_win_64", |
111 "//content/public/common:static_features", | |
112 "//content/public/common:static_switches", | 111 "//content/public/common:static_switches", |
113 "//ppapi/proxy:ipc", | 112 "//ppapi/proxy:ipc", |
114 "//sandbox", | 113 "//sandbox", |
115 ] | 114 ] |
116 } | 115 } |
117 | 116 |
118 # This is a tiny subset of //content built specially for nacl64.exe. | 117 # This is a tiny subset of //content built specially for nacl64.exe. |
119 # There are no subcomponents of //content small enough to get just | 118 # There are no subcomponents of //content small enough to get just |
120 # what nacl64.exe needs without bringing in other stuff that causes | 119 # what nacl64.exe needs without bringing in other stuff that causes |
121 # problems for the build. | 120 # problems for the build. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 "//chrome/installer/util:with_no_strings", | 159 "//chrome/installer/util:with_no_strings", |
161 "//components/browser_watcher:browser_watcher_client", | 160 "//components/browser_watcher:browser_watcher_client", |
162 "//components/flags_ui:switches", | 161 "//components/flags_ui:switches", |
163 "//components/policy", | 162 "//components/policy", |
164 "//content/public/common:static_switches", | 163 "//content/public/common:static_switches", |
165 "//ipc", | 164 "//ipc", |
166 "//third_party/kasko", | 165 "//third_party/kasko", |
167 ] | 166 ] |
168 } | 167 } |
169 } | 168 } |
OLD | NEW |