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

Side by Side Diff: base/base.gyp

Issue 165022: Factor out window creation into base::WindowImpl. This class will be used in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | base/window_impl.h » ('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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 }, 439 },
440 }, 440 },
441 { # else: OS != "mac" 441 { # else: OS != "mac"
442 'sources!': [ 442 'sources!': [
443 'crypto/cssm_init.cc', 443 'crypto/cssm_init.cc',
444 'crypto/cssm_init.h', 444 'crypto/cssm_init.h',
445 ], 445 ],
446 } 446 }
447 ], 447 ],
448 [ 'OS == "win"', { 448 [ 'OS == "win"', {
449 'include_dirs': [
450 '../chrome/third_party/wtl/include',
451 ],
449 'sources/': [ ['exclude', '_(linux|mac|posix|chromeos)\\.cc$'], 452 'sources/': [ ['exclude', '_(linux|mac|posix|chromeos)\\.cc$'],
450 ['exclude', '\\.mm?$' ] ], 453 ['exclude', '\\.mm?$' ] ],
454 'sources': [
455 'window_impl.cc',
456 'window_impl.h',
457 ],
451 'sources!': [ 458 'sources!': [
452 'data_pack.cc', 459 'data_pack.cc',
453 'event_recorder_stubs.cc', 460 'event_recorder_stubs.cc',
454 'file_descriptor_shuffle.cc', 461 'file_descriptor_shuffle.cc',
455 'message_pump_libevent.cc', 462 'message_pump_libevent.cc',
456 'string16.cc', 463 'string16.cc',
457 ], 464 ],
458 }, 465 },
459 { # else: OS != "win" 466 { # else: OS != "win"
460 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], 467 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'],
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 '<@(_outputs)', 832 '<@(_outputs)',
826 ], 833 ],
827 'message': 'Generating version information', 834 'message': 'Generating version information',
828 }, 835 },
829 ], 836 ],
830 }, 837 },
831 ], 838 ],
832 }], 839 }],
833 ], 840 ],
834 } 841 }
OLDNEW
« no previous file with comments | « no previous file | base/window_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698