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

Side by Side Diff: chrome_elf/blacklist.gypi

Issue 2123443002: Revert of Switch chrome_elf exception handling from breakpad to crashpad (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « chrome_elf/DEPS ('k') | chrome_elf/blacklist/blacklist_interceptions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'blacklist', 7 'target_name': 'blacklist',
8 'type': 'static_library', 8 'type': 'static_library',
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
11 '<(SHARED_INTERMEDIATE_DIR)', 11 '<(SHARED_INTERMEDIATE_DIR)',
12 ], 12 ],
13 'sources': [ 13 'sources': [
14 'blacklist/blacklist.cc', 14 'blacklist/blacklist.cc',
15 'blacklist/blacklist.h', 15 'blacklist/blacklist.h',
16 'blacklist/blacklist_interceptions.cc', 16 'blacklist/blacklist_interceptions.cc',
17 'blacklist/blacklist_interceptions.h', 17 'blacklist/blacklist_interceptions.h',
18 'blacklist/crashpad_helper.cc',
19 'blacklist/crashpad_helper.h',
20 ], 18 ],
21 'dependencies': [ 19 'dependencies': [
22 '../base/base.gyp:base', 20 '../base/base.gyp:base',
23 '../chrome_elf/chrome_elf.gyp:chrome_elf_common', 21 '../chrome_elf/chrome_elf.gyp:chrome_elf_breakpad',
24 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants', 22 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants',
25 '../components/components.gyp:crash_component',
26 '../sandbox/sandbox.gyp:sandbox', 23 '../sandbox/sandbox.gyp:sandbox',
27 ], 24 ],
28 }, 25 },
29 { 26 {
30 'target_name': 'blacklist_test_main_dll', 27 'target_name': 'blacklist_test_main_dll',
31 'type': 'shared_library', 28 'type': 'shared_library',
32 'sources': [ 29 'sources': [
33 'blacklist/test/blacklist_test_main_dll.cc', 30 'blacklist/test/blacklist_test_main_dll.cc',
34 'blacklist/test/blacklist_test_main_dll.def', 31 'blacklist/test/blacklist_test_main_dll.def',
35 ], 32 ],
36 'dependencies': [ 33 'dependencies': [
37 '../base/base.gyp:base', 34 '../base/base.gyp:base',
38 '../chrome/chrome.gyp:install_static_util',
39 'blacklist', 35 'blacklist',
40 ], 36 ],
41 'msvs_settings': {
42 'VCLinkerTool': {
43 'DelayLoadDLLs': [
44 'dbghelp.dll',
45 'ole32.dll',
46 'psapi.dll',
47 'rpcrt4.dll',
48 'shell32.dll',
49 'shlwapi.dll',
50 'user32.dll',
51 'winhttp.dll',
52 'winmm.dll',
53 'ws2_32.dll',
54 ],
55 },
56 },
57 }, 37 },
58 { 38 {
59 'target_name': 'blacklist_test_dll_1', 39 'target_name': 'blacklist_test_dll_1',
60 'type': 'loadable_module', 40 'type': 'loadable_module',
61 'sources': [ 41 'sources': [
62 'blacklist/test/blacklist_test_dll_1.cc', 42 'blacklist/test/blacklist_test_dll_1.cc',
63 'blacklist/test/blacklist_test_dll_1.def', 43 'blacklist/test/blacklist_test_dll_1.def',
64 ], 44 ],
65 }, 45 },
66 { 46 {
(...skipping 13 matching lines...) Expand all
80 'msvs_settings': { 60 'msvs_settings': {
81 # There's no exports in this DLL, this tells ninja not to expect an 61 # There's no exports in this DLL, this tells ninja not to expect an
82 # import lib so that it doesn't keep rebuilding unnecessarily due to 62 # import lib so that it doesn't keep rebuilding unnecessarily due to
83 # the .lib being "missing". 63 # the .lib being "missing".
84 'NoImportLibrary': 'true', 64 'NoImportLibrary': 'true',
85 }, 65 },
86 }, 66 },
87 ], 67 ],
88 } 68 }
89 69
OLDNEW
« no previous file with comments | « chrome_elf/DEPS ('k') | chrome_elf/blacklist/blacklist_interceptions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698