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

Side by Side Diff: chrome_elf/blacklist.gypi

Issue 886123002: Use NoImportLib: true for blacklist_test_dll_3 to avoid unnecessary rebuilding (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | no next file » | 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 '..',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'blacklist/test/blacklist_test_dll_2.cc', 53 'blacklist/test/blacklist_test_dll_2.cc',
54 'blacklist/test/blacklist_test_dll_2.def', 54 'blacklist/test/blacklist_test_dll_2.def',
55 ], 55 ],
56 }, 56 },
57 { 57 {
58 'target_name': 'blacklist_test_dll_3', 58 'target_name': 'blacklist_test_dll_3',
59 'type': 'loadable_module', 59 'type': 'loadable_module',
60 'sources': [ 60 'sources': [
61 'blacklist/test/blacklist_test_dll_3.cc', 61 'blacklist/test/blacklist_test_dll_3.cc',
62 ], 62 ],
63 'msvs_settings': {
64 # There's no exports in this DLL, this tells ninja not to expect an
65 # import lib so that it doesn't keep rebuilding unnecessarily due to
66 # the .lib being "missing".
67 'NoImportLibrary': 'true',
68 },
63 }, 69 },
64 ], 70 ],
65 } 71 }
66 72
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698