| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ] | 100 ] |
| 101 | 101 |
| 102 deps = [ | 102 deps = [ |
| 103 ":broker", | 103 ":broker", |
| 104 ":nacl64_content", | 104 ":nacl64_content", |
| 105 ":nacl64_crash_reporter_client", | 105 ":nacl64_crash_reporter_client", |
| 106 "//base", | 106 "//base", |
| 107 "//breakpad:breakpad_handler", | 107 "//breakpad:breakpad_handler", |
| 108 "//build/win:default_exe_manifest", | 108 "//build/win:default_exe_manifest", |
| 109 "//chrome:nacl64_exe_version", | 109 "//chrome:nacl64_exe_version", |
| 110 "//chrome/install_static:install_static_util", |
| 110 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 111 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 111 "//components/nacl/loader:nacl_helper_win_64", | 112 "//components/nacl/loader:nacl_helper_win_64", |
| 112 "//content/public/common:static_features", | 113 "//content/public/common:static_features", |
| 113 "//content/public/common:static_switches", | 114 "//content/public/common:static_switches", |
| 114 "//ppapi/proxy:ipc", | 115 "//ppapi/proxy:ipc", |
| 115 "//sandbox", | 116 "//sandbox", |
| 116 ] | 117 ] |
| 117 } | 118 } |
| 118 | 119 |
| 119 # This is a tiny subset of //content built specially for nacl64.exe. | 120 # This is a tiny subset of //content built specially for nacl64.exe. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "//chrome/installer/util:with_no_strings", | 162 "//chrome/installer/util:with_no_strings", |
| 162 "//components/browser_watcher:browser_watcher_client", | 163 "//components/browser_watcher:browser_watcher_client", |
| 163 "//components/flags_ui:switches", | 164 "//components/flags_ui:switches", |
| 164 "//components/policy:generated", | 165 "//components/policy:generated", |
| 165 "//content/public/common:static_switches", | 166 "//content/public/common:static_switches", |
| 166 "//ipc", | 167 "//ipc", |
| 167 "//third_party/kasko", | 168 "//third_party/kasko", |
| 168 ] | 169 ] |
| 169 } | 170 } |
| 170 } | 171 } |
| OLD | NEW |