| 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/win/manifest.gni") | 5 import("//build/config/win/manifest.gni") |
| 6 import("//chrome/version.gni") | 6 import("//chrome/version.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 process_version("chrome_elf_resources") { | 9 process_version("chrome_elf_resources") { |
| 10 template_file = chrome_version_rc_template | 10 template_file = chrome_version_rc_template |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 source_set("breakpad") { | 84 source_set("breakpad") { |
| 85 include_dirs = [ "$target_gen_dir" ] | 85 include_dirs = [ "$target_gen_dir" ] |
| 86 sources = [ | 86 sources = [ |
| 87 "breakpad.cc", | 87 "breakpad.cc", |
| 88 "breakpad.h", | 88 "breakpad.h", |
| 89 ] | 89 ] |
| 90 deps = [ | 90 deps = [ |
| 91 ":common", | 91 ":common", |
| 92 "//breakpad:breakpad_handler", | 92 "//breakpad:breakpad_handler", |
| 93 "//chrome:version_header", | 93 "//chrome/common:version_header", |
| 94 ] | 94 ] |
| 95 } | 95 } |
| 96 | 96 |
| 97 if (is_component_build) { | 97 if (is_component_build) { |
| 98 shared_library("chrome_redirects") { | 98 shared_library("chrome_redirects") { |
| 99 sources = [ | 99 sources = [ |
| 100 "chrome_redirects_main.cc", | 100 "chrome_redirects_main.cc", |
| 101 ] | 101 ] |
| 102 deps = [ | 102 deps = [ |
| 103 ":lib", | 103 ":lib", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 } | 217 } |
| 218 | 218 |
| 219 shared_library("blacklist_test_dll_3") { | 219 shared_library("blacklist_test_dll_3") { |
| 220 sources = [ | 220 sources = [ |
| 221 "blacklist/test/blacklist_test_dll_3.cc", | 221 "blacklist/test/blacklist_test_dll_3.cc", |
| 222 ] | 222 ] |
| 223 deps = [ | 223 deps = [ |
| 224 "//build/config/sanitizers:deps", | 224 "//build/config/sanitizers:deps", |
| 225 ] | 225 ] |
| 226 } | 226 } |
| OLD | NEW |