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

Side by Side Diff: base/base.gyp

Issue 39081: Split worker_pool.cc into worker_pool_linux.cc and worker_pool_win.cc (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/base.scons » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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/common.gypi', 10 '../build/common.gypi',
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 'waitable_event_win.cc', 278 'waitable_event_win.cc',
279 'watchdog.cc', 279 'watchdog.cc',
280 'watchdog.h', 280 'watchdog.h',
281 'win_util.cc', 281 'win_util.cc',
282 'win_util.h', 282 'win_util.h',
283 'windows_message_list.h', 283 'windows_message_list.h',
284 'wmi_util.cc', 284 'wmi_util.cc',
285 'wmi_util.h', 285 'wmi_util.h',
286 'word_iterator.cc', 286 'word_iterator.cc',
287 'word_iterator.h', 287 'word_iterator.h',
288 'worker_pool.cc',
289 'worker_pool.h', 288 'worker_pool.h',
289 'worker_pool_linux.cc',
290 'worker_pool_mac.mm', 290 'worker_pool_mac.mm',
291 'worker_pool_win.cc',
291 ], 292 ],
292 'include_dirs': [ 293 'include_dirs': [
293 '..', 294 '..',
294 ], 295 ],
295 'direct_dependent_settings': { 296 'direct_dependent_settings': {
296 'include_dirs': [ 297 'include_dirs': [
297 '..', 298 '..',
298 ], 299 ],
299 }, 300 },
300 # These warnings are needed for the files in third_party\dmg_fp. 301 # These warnings are needed for the files in third_party\dmg_fp.
(...skipping 19 matching lines...) Expand all
320 'idle_timer_none.cc', 321 'idle_timer_none.cc',
321 'message_pump_glib.cc', 322 'message_pump_glib.cc',
322 'nss_init.cc', 323 'nss_init.cc',
323 'time_posix.cc', 324 'time_posix.cc',
324 ], 325 ],
325 } 326 }
326 ], 327 ],
327 [ 'OS == "mac"', { 328 [ 'OS == "mac"', {
328 'sources/': [ ['exclude', '_(linux|win)\\.cc$'] ], 329 'sources/': [ ['exclude', '_(linux|win)\\.cc$'] ],
329 'sources!': [ 330 'sources!': [
330 'worker_pool.cc',
331 ], 331 ],
332 'link_settings': { 332 'link_settings': {
333 'libraries': [ 333 'libraries': [
334 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 334 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
335 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', 335 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
336 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 336 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
337 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 337 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
338 ], 338 ],
339 }, 339 },
340 }, 340 },
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 'target_name': 'debug_message', 552 'target_name': 'debug_message',
553 'type': 'executable', 553 'type': 'executable',
554 'sources': [ 554 'sources': [
555 'debug_message.cc', 555 'debug_message.cc',
556 ], 556 ],
557 }, 557 },
558 ], 558 ],
559 }], 559 }],
560 ], 560 ],
561 } 561 }
OLDNEW
« no previous file with comments | « no previous file | base/base.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698