| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 args += [ "--enable_hidpi=1" ] | 119 args += [ "--enable_hidpi=1" ] |
| 120 } | 120 } |
| 121 if (is_component_build) { | 121 if (is_component_build) { |
| 122 args += [ "--component_build=1" ] | 122 args += [ "--component_build=1" ] |
| 123 } else { | 123 } else { |
| 124 outputs += [ "$root_out_dir/chrome.packed.7z" ] | 124 outputs += [ "$root_out_dir/chrome.packed.7z" ] |
| 125 } | 125 } |
| 126 | 126 |
| 127 if (enable_nacl) { | 127 if (enable_nacl) { |
| 128 inputs += [ "$root_out_dir/nacl_irt_x86_64.nexe" ] | 128 inputs += [ "$root_out_dir/nacl_irt_x86_64.nexe" ] |
| 129 if (cpu_arch == "x86") { | 129 if (current_cpu == "x86") { |
| 130 inputs += [ | 130 inputs += [ |
| 131 "$root_out_dir/nacl64.exe", | 131 "$root_out_dir/nacl64.exe", |
| 132 "$root_out_dir/nacl_irt_x86_32.nexe", | 132 "$root_out_dir/nacl_irt_x86_32.nexe", |
| 133 ] | 133 ] |
| 134 } | 134 } |
| 135 } | 135 } |
| 136 | 136 |
| 137 if (icu_use_data_file) { | 137 if (icu_use_data_file) { |
| 138 inputs += [ "$root_out_dir/icudtl.dat" ] | 138 inputs += [ "$root_out_dir/icudtl.dat" ] |
| 139 } else { | 139 } else { |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 libs = [ "setupapi.lib" ] | 193 libs = [ "setupapi.lib" ] |
| 194 | 194 |
| 195 deps = [ | 195 deps = [ |
| 196 ":archive", | 196 ":archive", |
| 197 ":lib", | 197 ":lib", |
| 198 ":version", | 198 ":version", |
| 199 "//build/config/sanitizers:deps", | 199 "//build/config/sanitizers:deps", |
| 200 "//build/win:default_exe_manifest", | 200 "//build/win:default_exe_manifest", |
| 201 ] | 201 ] |
| 202 } | 202 } |
| OLD | NEW |