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

Side by Side Diff: chrome_elf/blacklist.gypi

Issue 118343004: Reland of http://crrev.com/241548. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « chrome_elf/DEPS ('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
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'targets': [
6 {
7 'target_name': 'blacklist',
8 'type': 'static_library',
9 'sources': [
10 'blacklist/blacklist.cc',
11 'blacklist/blacklist.h',
12 'blacklist/blacklist_interceptions.cc',
13 'blacklist/blacklist_interceptions.h',
14 ],
15 'dependencies': [
16 # Depend on base_static, but do NOT take a dependency on base.gyp:base
17 # as that would risk pulling in base's link-time dependencies which
18 # chrome_elf cannot do.
19 '../base/base.gyp:base_static',
20 '../sandbox/sandbox.gyp:sandbox',
21 ],
22 },
23 {
24 'target_name': 'blacklist_test_main_dll',
25 'type': 'shared_library',
26 'sources': [
27 'blacklist/test/blacklist_test_main_dll.cc',
28 'blacklist/test/blacklist_test_main_dll.def',
29 ],
30 'dependencies': [
31 '../base/base.gyp:base',
32 'blacklist',
33 ],
34 },
35 {
36 'target_name': 'blacklist_test_dll_1',
37 'type': 'loadable_module',
38 'sources': [
39 'blacklist/test/blacklist_test_dll_1.cc',
40 'blacklist/test/blacklist_test_dll_1.def',
41 ],
42 },
43 {
44 'target_name': 'blacklist_test_dll_2',
45 'type': 'loadable_module',
46 'sources': [
47 'blacklist/test/blacklist_test_dll_2.cc',
48 'blacklist/test/blacklist_test_dll_2.def',
49 ],
50 },
51 {
52 'target_name': 'blacklist_test_dll_3',
53 'type': 'loadable_module',
54 'sources': [
55 'blacklist/test/blacklist_test_dll_3.cc',
56 ],
57 },
58 ],
59 }
60
OLDNEW
« no previous file with comments | « chrome_elf/DEPS ('k') | chrome_elf/blacklist/blacklist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698