| 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/module_args/v8.gni") | 7 import("//build/module_args/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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 sources = [ | 61 sources = [ |
| 62 "configuration_test.cc", | 62 "configuration_test.cc", |
| 63 "decompress_test.cc", | 63 "decompress_test.cc", |
| 64 "mini_string_test.cc", | 64 "mini_string_test.cc", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 public_deps = [ | 67 public_deps = [ |
| 68 ":lib", | 68 ":lib", |
| 69 ] | 69 ] |
| 70 deps = [ | 70 deps = [ |
| 71 "//base", |
| 71 "//testing/gtest", | 72 "//testing/gtest", |
| 72 ] | 73 ] |
| 73 } | 74 } |
| 74 | 75 |
| 75 packed_files_rc_file = "$target_gen_dir/packed_files.rc" | 76 packed_files_rc_file = "$target_gen_dir/packed_files.rc" |
| 76 | 77 |
| 77 action("archive") { | 78 action("archive") { |
| 78 script = "//chrome/tools/build/win/create_installer_archive.py" | 79 script = "//chrome/tools/build/win/create_installer_archive.py" |
| 79 | 80 |
| 80 release_file = "chrome.release" | 81 release_file = "chrome.release" |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 libs = [ "setupapi.lib" ] | 193 libs = [ "setupapi.lib" ] |
| 193 | 194 |
| 194 deps = [ | 195 deps = [ |
| 195 ":archive", | 196 ":archive", |
| 196 ":lib", | 197 ":lib", |
| 197 ":version", | 198 ":version", |
| 198 "//build/config/sanitizers:deps", | 199 "//build/config/sanitizers:deps", |
| 199 "//build/win:default_exe_manifest", | 200 "//build/win:default_exe_manifest", |
| 200 ] | 201 ] |
| 201 } | 202 } |
| OLD | NEW |