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

Side by Side Diff: chrome_elf/blacklist.gypi

Issue 181373003: Link chrome_elf.dll instead of statically linking the blacklist code (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add header Created 6 years, 9 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/renderer/chrome_content_renderer_client.cc ('k') | chrome_elf/blacklist/blacklist.h » ('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 ], 18 ],
19 'dependencies': [ 19 'dependencies': [
20 # 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
21 # 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
22 # chrome_elf cannot do. 22 # chrome_elf cannot do.
23 '../base/base.gyp:base_static', 23 '../base/base.gyp:base_static',
24 '../chrome/chrome.gyp:chrome_version_header', 24 '../chrome/chrome.gyp:chrome_version_header',
25 '../chrome_elf/chrome_elf.gyp:chrome_elf_breakpad', 25 '../chrome_elf/chrome_elf.gyp:chrome_elf_breakpad',
26 '../chrome_elf/chrome_elf.gyp:chrome_elf_constants',
26 '../sandbox/sandbox.gyp:sandbox', 27 '../sandbox/sandbox.gyp:sandbox',
27 ], 28 ],
28 }, 29 },
29 { 30 {
30 'target_name': 'blacklist_test_main_dll', 31 'target_name': 'blacklist_test_main_dll',
31 'type': 'shared_library', 32 'type': 'shared_library',
32 'sources': [ 33 'sources': [
33 'blacklist/test/blacklist_test_main_dll.cc', 34 'blacklist/test/blacklist_test_main_dll.cc',
34 'blacklist/test/blacklist_test_main_dll.def', 35 'blacklist/test/blacklist_test_main_dll.def',
35 ], 36 ],
(...skipping 21 matching lines...) Expand all
57 { 58 {
58 'target_name': 'blacklist_test_dll_3', 59 'target_name': 'blacklist_test_dll_3',
59 'type': 'loadable_module', 60 'type': 'loadable_module',
60 'sources': [ 61 'sources': [
61 'blacklist/test/blacklist_test_dll_3.cc', 62 'blacklist/test/blacklist_test_dll_3.cc',
62 ], 63 ],
63 }, 64 },
64 ], 65 ],
65 } 66 }
66 67
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome_elf/blacklist/blacklist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698