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 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//build_overrides/v8.gni") | 7 import("//build_overrides/v8.gni") |
8 import("//chrome/version.gni") | 8 import("//chrome/version.gni") |
9 import("//third_party/icu/config.gni") | 9 import("//third_party/icu/config.gni") |
10 | 10 |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 155 |
156 deps = [ | 156 deps = [ |
157 "//chrome", | 157 "//chrome", |
158 "//chrome:main_dll", | 158 "//chrome:main_dll", |
159 "//chrome/browser/extensions/default_extensions", | 159 "//chrome/browser/extensions/default_extensions", |
160 "//chrome/installer/setup", | 160 "//chrome/installer/setup", |
161 "//third_party/icu:icudata", | 161 "//third_party/icu:icudata", |
162 | 162 |
163 #"../chrome.gyp:chrome_nacl_win64", TODO(GYP) bug 512869. | 163 #"../chrome.gyp:chrome_nacl_win64", TODO(GYP) bug 512869. |
164 ] | 164 ] |
| 165 |
| 166 if (enable_nacl) { |
| 167 deps += [ "//ppapi/native_client:irt" ] |
| 168 } |
165 } | 169 } |
166 | 170 |
167 # TODO(GYP) bug 521052: This target needs to be checked to make sure its the | 171 # TODO(GYP) bug 521052: This target needs to be checked to make sure its the |
168 # same size as the GYP build. | 172 # same size as the GYP build. |
169 executable("mini_installer") { | 173 executable("mini_installer") { |
170 sources = [ | 174 sources = [ |
171 "mini_installer.cc", | 175 "mini_installer.cc", |
172 packed_files_rc_file, | 176 packed_files_rc_file, |
173 ] | 177 ] |
174 | 178 |
(...skipping 18 matching lines...) Expand all Loading... |
193 libs = [ "setupapi.lib" ] | 197 libs = [ "setupapi.lib" ] |
194 | 198 |
195 deps = [ | 199 deps = [ |
196 ":archive", | 200 ":archive", |
197 ":lib", | 201 ":lib", |
198 ":version", | 202 ":version", |
199 "//build/config/sanitizers:deps", | 203 "//build/config/sanitizers:deps", |
200 "//build/win:default_exe_manifest", | 204 "//build/win:default_exe_manifest", |
201 ] | 205 ] |
202 } | 206 } |
OLD | NEW |