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 19 matching lines...) Expand all Loading... |
30 "//chrome/app/chrome_crash_reporter_client_win.h", | 30 "//chrome/app/chrome_crash_reporter_client_win.h", |
31 "//chrome/common/chrome_result_codes.h", | 31 "//chrome/common/chrome_result_codes.h", |
32 "chrome_elf.def", | 32 "chrome_elf.def", |
33 "chrome_elf_main.cc", | 33 "chrome_elf_main.cc", |
34 "chrome_elf_main.h", | 34 "chrome_elf_main.h", |
35 ] | 35 ] |
36 deps = [ | 36 deps = [ |
37 ":blacklist", | 37 ":blacklist", |
38 ":breakpad", | 38 ":breakpad", |
39 ":chrome_elf_manifest", | 39 ":chrome_elf_manifest", |
40 ":chrome_elf_resources", | 40 #":chrome_elf_resources", |
41 ":common", | 41 ":common", |
42 "//base", | 42 "//base", |
43 "//build/config/sanitizers:deps", | 43 "//build/config/sanitizers:deps", |
44 "//chrome/install_static:install_static_util", | 44 "//chrome/install_static:install_static_util", |
45 "//components/crash/content/app", | 45 "//components/crash/content/app", |
46 "//components/crash/core/common", | 46 "//components/crash/core/common", |
47 "//content/public/common:result_codes", | 47 "//content/public/common:result_codes", |
48 ] | 48 ] |
49 configs += [ "//build/config/win:windowed" ] | 49 configs += [ "//build/config/win:windowed" ] |
50 configs -= [ "//build/config/win:console" ] | 50 configs -= [ "//build/config/win:console" ] |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 # which does), Ninja would get confused and always rebuild this target because | 231 # which does), Ninja would get confused and always rebuild this target because |
232 # it sees a declared output file but that file doesn't exist on disk. | 232 # it sees a declared output file but that file doesn't exist on disk. |
233 loadable_module("blacklist_test_dll_3") { | 233 loadable_module("blacklist_test_dll_3") { |
234 sources = [ | 234 sources = [ |
235 "blacklist/test/blacklist_test_dll_3.cc", | 235 "blacklist/test/blacklist_test_dll_3.cc", |
236 ] | 236 ] |
237 deps = [ | 237 deps = [ |
238 "//build/config/sanitizers:deps", | 238 "//build/config/sanitizers:deps", |
239 ] | 239 ] |
240 } | 240 } |
OLD | NEW |