| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 133 |
| 134 deps = [ | 134 deps = [ |
| 135 "//base", | 135 "//base", |
| 136 "//content/public/common:static_switches", | 136 "//content/public/common:static_switches", |
| 137 "//sandbox", | 137 "//sandbox", |
| 138 ] | 138 ] |
| 139 } | 139 } |
| 140 | 140 |
| 141 source_set("nacl64_crash_reporter_client") { | 141 source_set("nacl64_crash_reporter_client") { |
| 142 sources = [ | 142 sources = [ |
| 143 "//chrome/app/chrome_crash_reporter_client.cc", | 143 "//chrome/app/chrome_crash_reporter_client_win.cc", |
| 144 "//chrome/common/crash_keys.cc", | 144 "//chrome/common/crash_keys.cc", |
| 145 ] | 145 ] |
| 146 | 146 |
| 147 defines = [ "NACL_WIN64" ] | 147 defines = [ "NACL_WIN64" ] |
| 148 | 148 |
| 149 check_includes = false | 149 check_includes = false |
| 150 | 150 |
| 151 deps = [ | 151 deps = [ |
| 152 "//chrome/common:constants", | 152 "//chrome/common:constants", |
| 153 "//chrome/installer/util:with_no_strings", | 153 "//chrome/installer/util:with_no_strings", |
| 154 "//components/browser_watcher:browser_watcher_client", | 154 "//components/browser_watcher:browser_watcher_client", |
| 155 "//components/flags_ui:switches", | 155 "//components/flags_ui:switches", |
| 156 "//components/policy", | 156 "//components/policy", |
| 157 "//content/public/common:static_switches", | 157 "//content/public/common:static_switches", |
| 158 "//ipc", | 158 "//ipc", |
| 159 "//third_party/kasko:kasko_features", | 159 "//third_party/kasko:kasko_features", |
| 160 ] | 160 ] |
| 161 } | 161 } |
| 162 } | 162 } |
| OLD | NEW |