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

Side by Side Diff: chrome_elf/chrome_elf.gyp

Issue 154653002: Breakpad coverage for chrome_elf start up (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'includes': [ 8 'includes': [
9 '../build/win_precompile.gypi', 9 '../build/win_precompile.gypi',
10 '../chrome/version.gypi', 10 '../chrome/version.gypi',
11 'blacklist.gypi', 11 'blacklist.gypi',
12 ], 12 ],
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'chrome_elf', 15 'target_name': 'chrome_elf',
16 'type': 'shared_library', 16 'type': 'shared_library',
17 'include_dirs': [ 17 'include_dirs': [
18 '..', 18 '..',
19 '<(SHARED_INTERMEDIATE_DIR)',
19 ], 20 ],
20 'sources': [ 21 'sources': [
22 'breakpad.cc',
23 'breakpad.h',
21 'chrome_elf.def', 24 'chrome_elf.def',
22 'chrome_elf_main.cc', 25 'chrome_elf_main.cc',
23 'chrome_elf_main.h', 26 'chrome_elf_main.h',
24 ], 27 ],
25 'dependencies': [ 28 'dependencies': [
26 'blacklist', 29 'blacklist',
27 'chrome_elf_lib', 30 'chrome_elf_lib',
31 '../base/base.gyp:base',
32 '../breakpad/breakpad.gyp:breakpad_handler',
33 # TODO(caitkp): Would be nice to get rid of this. I think LazyInit uses
34 # it in dbg mode.
35 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
36 '../chrome/chrome.gyp:chrome_version_header',
28 ], 37 ],
29 'msvs_settings': { 38 'msvs_settings': {
30 'VCLinkerTool': { 39 'VCLinkerTool': {
31 'BaseAddress': '0x01c20000', 40 'BaseAddress': '0x01c20000',
32 # Set /SUBSYSTEM:WINDOWS. 41 # Set /SUBSYSTEM:WINDOWS.
33 'SubSystem': '2', 42 'SubSystem': '2',
34 'AdditionalDependencies!': [ 43 'AdditionalDependencies!': [
35 'user32.lib', 44 'user32.lib',
36 ], 45 ],
37 'IgnoreDefaultLibraryNames': [ 46 'IgnoreDefaultLibraryNames': [
(...skipping 14 matching lines...) Expand all
52 ], 61 ],
53 'include_dirs': [ 62 'include_dirs': [
54 '..', 63 '..',
55 '<(SHARED_INTERMEDIATE_DIR)', 64 '<(SHARED_INTERMEDIATE_DIR)',
56 ], 65 ],
57 'dependencies': [ 66 'dependencies': [
58 'chrome_elf_lib', 67 'chrome_elf_lib',
59 '../base/base.gyp:base', 68 '../base/base.gyp:base',
60 '../base/base.gyp:run_all_unittests', 69 '../base/base.gyp:run_all_unittests',
61 '../base/base.gyp:test_support_base', 70 '../base/base.gyp:test_support_base',
71 '../breakpad/breakpad.gyp:breakpad_handler',
62 '../sandbox/sandbox.gyp:sandbox', 72 '../sandbox/sandbox.gyp:sandbox',
73 '../testing/gmock.gyp:gmock',
63 '../testing/gtest.gyp:gtest', 74 '../testing/gtest.gyp:gtest',
64 'blacklist', 75 'blacklist',
65 'blacklist_test_dll_1', 76 'blacklist_test_dll_1',
66 'blacklist_test_dll_2', 77 'blacklist_test_dll_2',
67 'blacklist_test_dll_3', 78 'blacklist_test_dll_3',
68 'blacklist_test_main_dll', 79 'blacklist_test_main_dll',
69 ], 80 ],
70 }, 81 },
71 { 82 {
72 # A dummy target to ensure that chrome_elf.dll and chrome.exe gets build 83 # A dummy target to ensure that chrome_elf.dll and chrome.exe gets build
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 # Set /SUBSYSTEM:WINDOWS. 129 # Set /SUBSYSTEM:WINDOWS.
119 'SubSystem': '2', 130 'SubSystem': '2',
120 }, 131 },
121 }, 132 },
122 }, 133 },
123 ], 134 ],
124 }], 135 }],
125 ], 136 ],
126 } 137 }
127 138
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698