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

Side by Side Diff: chrome_elf/blacklist.gypi

Issue 154653002: Breakpad coverage for chrome_elf start up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments and catch crashes in blacklist intercept code Created 6 years, 10 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 | Annotate | Revision Log
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 '<(SHARED_INTERMEDIATE_DIR)', 11 '<(SHARED_INTERMEDIATE_DIR)',
11 ], 12 ],
12 'sources': [ 13 'sources': [
13 'blacklist/blacklist.cc', 14 'blacklist/blacklist.cc',
14 'blacklist/blacklist.h', 15 'blacklist/blacklist.h',
15 'blacklist/blacklist_interceptions.cc', 16 'blacklist/blacklist_interceptions.cc',
16 'blacklist/blacklist_interceptions.h', 17 'blacklist/blacklist_interceptions.h',
17 ], 18 ],
18 'dependencies': [ 19 'dependencies': [
19 # Depend on base_static, but do NOT take a dependency on base.gyp:base 20 # Depend on base_static, but do NOT take a dependency on base.gyp:base
20 # as that would risk pulling in base's link-time dependencies which 21 # as that would risk pulling in base's link-time dependencies which
21 # chrome_elf cannot do. 22 # chrome_elf cannot do.
22 '../base/base.gyp:base_static', 23 '../base/base.gyp:base_static',
23 '../chrome/chrome.gyp:chrome_version_header', 24 '../chrome/chrome.gyp:chrome_version_header',
24 '../sandbox/sandbox.gyp:sandbox', 25 '../chrome_elf/chrome_elf.gyp:chrome_elf_breakpad',
26 # TODO(caitkp): Why do we need this here?
robertshield 2014/02/10 18:43:14 possibly for the test target (blacklist_test_main_
Cait (Slow) 2014/02/12 19:15:41 Fixed by fwd declaring the ExceptionHandler.
27 '../breakpad/breakpad.gyp:breakpad_handler',
28 '../sandbox/sandbox.gyp:sandbox',
25 ], 29 ],
26 }, 30 },
27 { 31 {
28 'target_name': 'blacklist_test_main_dll', 32 'target_name': 'blacklist_test_main_dll',
29 'type': 'shared_library', 33 'type': 'shared_library',
30 'sources': [ 34 'sources': [
31 'blacklist/test/blacklist_test_main_dll.cc', 35 'blacklist/test/blacklist_test_main_dll.cc',
32 'blacklist/test/blacklist_test_main_dll.def', 36 'blacklist/test/blacklist_test_main_dll.def',
33 ], 37 ],
34 'dependencies': [ 38 'dependencies': [
(...skipping 20 matching lines...) Expand all
55 { 59 {
56 'target_name': 'blacklist_test_dll_3', 60 'target_name': 'blacklist_test_dll_3',
57 'type': 'loadable_module', 61 'type': 'loadable_module',
58 'sources': [ 62 'sources': [
59 'blacklist/test/blacklist_test_dll_3.cc', 63 'blacklist/test/blacklist_test_dll_3.cc',
60 ], 64 ],
61 }, 65 },
62 ], 66 ],
63 } 67 }
64 68
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698