| 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 | 6 |
| 7 # This file builds nacl64.exe, which is a 64-bit x86 Windows executable | 7 # This file builds nacl64.exe, which is a 64-bit x86 Windows executable |
| 8 # used only in the 32-bit x86 Windows build. The :broker code runs both | 8 # used only in the 32-bit x86 Windows build. The :broker code runs both |
| 9 # in nacl64.exe and in the 32-bit chrome executable, to launch | 9 # in nacl64.exe and in the 32-bit chrome executable, to launch |
| 10 # nacl64.exe and communicate with it. | 10 # nacl64.exe and communicate with it. |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 sources = [ | 93 sources = [ |
| 94 "//chrome/nacl/nacl_exe_win_64.cc", | 94 "//chrome/nacl/nacl_exe_win_64.cc", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 deps = [ | 97 deps = [ |
| 98 ":broker", | 98 ":broker", |
| 99 ":nacl64_content", | 99 ":nacl64_content", |
| 100 ":nacl64_crash_reporter_client", | 100 ":nacl64_crash_reporter_client", |
| 101 "//base", | 101 "//base", |
| 102 "//breakpad:breakpad_handler", | 102 "//breakpad:breakpad_handler", |
| 103 "//build/win:default_exe_manifest", |
| 103 "//chrome:nacl64_exe_version", | 104 "//chrome:nacl64_exe_version", |
| 104 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 105 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 105 "//components/nacl/loader:nacl_helper_win_64", | 106 "//components/nacl/loader:nacl_helper_win_64", |
| 106 "//content/public/common:static_switches", | 107 "//content/public/common:static_switches", |
| 107 "//ppapi/proxy:ipc", | 108 "//ppapi/proxy:ipc", |
| 108 "//sandbox", | 109 "//sandbox", |
| 109 ] | 110 ] |
| 110 } | 111 } |
| 111 | 112 |
| 112 # This is a tiny subset of //content built specially for nacl64.exe. | 113 # This is a tiny subset of //content built specially for nacl64.exe. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "//chrome/installer/util:with_no_strings", | 154 "//chrome/installer/util:with_no_strings", |
| 154 "//components/browser_watcher:browser_watcher_client", | 155 "//components/browser_watcher:browser_watcher_client", |
| 155 "//components/flags_ui:switches", | 156 "//components/flags_ui:switches", |
| 156 "//components/policy", | 157 "//components/policy", |
| 157 "//content/public/common:static_switches", | 158 "//content/public/common:static_switches", |
| 158 "//ipc", | 159 "//ipc", |
| 159 "//third_party/kasko:kasko_features", | 160 "//third_party/kasko:kasko_features", |
| 160 ] | 161 ] |
| 161 } | 162 } |
| 162 } | 163 } |
| OLD | NEW |