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

Side by Side Diff: base/base.gyp

Issue 7578011: Linux: fix build with system libevent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | 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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'base.gypi', 10 'base.gypi',
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 'dependencies': [ 276 'dependencies': [
277 '../third_party/icu/icu.gyp:icudata', 277 '../third_party/icu/icu.gyp:icudata',
278 ], 278 ],
279 'sources!': [ 279 'sources!': [
280 'dir_reader_posix_unittest.cc', 280 'dir_reader_posix_unittest.cc',
281 'file_descriptor_shuffle_unittest.cc', 281 'file_descriptor_shuffle_unittest.cc',
282 'threading/worker_pool_posix_unittest.cc', 282 'threading/worker_pool_posix_unittest.cc',
283 'message_pump_libevent_unittest.cc', 283 'message_pump_libevent_unittest.cc',
284 ], 284 ],
285 }, { # OS != "win" 285 }, { # OS != "win"
286 'dependencies': [
287 '../third_party/libevent/libevent.gyp:libevent'
288 ],
286 'sources/': [ 289 'sources/': [
287 ['exclude', '^win/'], 290 ['exclude', '^win/'],
288 ], 291 ],
289 'sources!': [ 292 'sources!': [
290 'debug/trace_event_win_unittest.cc', 293 'debug/trace_event_win_unittest.cc',
291 'time_win_unittest.cc', 294 'time_win_unittest.cc',
292 'win/win_util_unittest.cc', 295 'win/win_util_unittest.cc',
293 ], 296 ],
294 }], 297 }],
295 ], 298 ],
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 'msvs_settings': { 392 'msvs_settings': {
390 'VCLinkerTool': { 393 'VCLinkerTool': {
391 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 394 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
392 }, 395 },
393 }, 396 },
394 }, 397 },
395 ], 398 ],
396 }], 399 }],
397 ], 400 ],
398 } 401 }
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