Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: chrome_elf/BUILD.gn

Issue 1841573002: [Chrome ELF] New NT registry API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up OverrideRegistry function. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 56
57 source_set("common") { 57 source_set("common") {
58 public_deps = [ 58 public_deps = [
59 ":constants", 59 ":constants",
60 ] 60 ]
61 deps = [ 61 deps = [
62 "//base", 62 "//base",
63 "//sandbox", 63 "//sandbox",
64 ] 64 ]
65 sources = [ 65 sources = [
66 "chrome_elf_reg.cc",
67 "chrome_elf_reg.h",
66 "chrome_elf_util.cc", 68 "chrome_elf_util.cc",
67 "chrome_elf_util.h", 69 "chrome_elf_util.h",
68 "thunk_getter.cc", 70 "thunk_getter.cc",
69 "thunk_getter.h", 71 "thunk_getter.h",
70 ] 72 ]
71 } 73 }
72 74
73 source_set("breakpad") { 75 source_set("breakpad") {
74 include_dirs = [ "$target_gen_dir" ] 76 include_dirs = [ "$target_gen_dir" ]
75 sources = [ 77 sources = [
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 } 198 }
197 199
198 shared_library("blacklist_test_dll_3") { 200 shared_library("blacklist_test_dll_3") {
199 sources = [ 201 sources = [
200 "blacklist/test/blacklist_test_dll_3.cc", 202 "blacklist/test/blacklist_test_dll_3.cc",
201 ] 203 ]
202 deps = [ 204 deps = [
203 "//build/config/sanitizers:deps", 205 "//build/config/sanitizers:deps",
204 ] 206 ]
205 } 207 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698