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

Side by Side Diff: base/base.gyp

Issue 11685002: Linux: add option to use system nspr. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 11 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
« no previous file with comments | « no previous file | base/base.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 },], 199 },],
200 ['component=="shared_library"', { 200 ['component=="shared_library"', {
201 'conditions': [ 201 'conditions': [
202 ['OS=="win"', { 202 ['OS=="win"', {
203 'sources!': [ 203 'sources!': [
204 'debug/debug_on_start_win.cc', 204 'debug/debug_on_start_win.cc',
205 ], 205 ],
206 }], 206 }],
207 ], 207 ],
208 }], 208 }],
209 ['use_system_nspr==1', {
210 'dependencies': [
211 'third_party/nspr/nspr.gyp:nspr',
212 ],
213 }],
209 ], 214 ],
210 'sources': [ 215 'sources': [
211 'third_party/nspr/prcpucfg.h', 216 'third_party/nspr/prcpucfg.h',
212 'third_party/nspr/prcpucfg_win.h', 217 'third_party/nspr/prcpucfg_win.h',
213 'third_party/nspr/prtypes.h', 218 'third_party/nspr/prtypes.h',
214 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', 219 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
215 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h', 220 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
216 'auto_reset.h', 221 'auto_reset.h',
217 'event_recorder.h', 222 'event_recorder.h',
218 'event_recorder_stubs.cc', 223 'event_recorder_stubs.cc',
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 ], 714 ],
710 'sources/': [ 715 'sources/': [
711 ['exclude', '^win/'], 716 ['exclude', '^win/'],
712 ], 717 ],
713 'sources!': [ 718 'sources!': [
714 'debug/trace_event_win_unittest.cc', 719 'debug/trace_event_win_unittest.cc',
715 'time_win_unittest.cc', 720 'time_win_unittest.cc',
716 'win/win_util_unittest.cc', 721 'win/win_util_unittest.cc',
717 ], 722 ],
718 }], 723 }],
724 ['use_system_nspr==1', {
725 'dependencies': [
726 'third_party/nspr/nspr.gyp:nspr',
727 ],
728 }],
719 ], # conditions 729 ], # conditions
720 'target_conditions': [ 730 'target_conditions': [
721 ['OS == "ios"', { 731 ['OS == "ios"', {
722 'sources/': [ 732 'sources/': [
723 # Pull in specific Mac files for iOS (which have been filtered out 733 # Pull in specific Mac files for iOS (which have been filtered out
724 # by file name rules). 734 # by file name rules).
725 ['include', '^mac/objc_property_releaser_unittest\\.mm$'], 735 ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
726 ['include', '^mac/bind_objc_block_unittest\\.mm$'], 736 ['include', '^mac/bind_objc_block_unittest\\.mm$'],
727 ['include', '^sys_string_conversions_mac_unittest\\.mm$'], 737 ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
728 ], 738 ],
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 'base_unittests.isolate', 1123 'base_unittests.isolate',
1114 ], 1124 ],
1115 'sources': [ 1125 'sources': [
1116 'base_unittests.isolate', 1126 'base_unittests.isolate',
1117 ], 1127 ],
1118 }, 1128 },
1119 ], 1129 ],
1120 }], 1130 }],
1121 ], 1131 ],
1122 } 1132 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698