OLD | NEW |
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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 'crypto/cssm_init.h', | 475 'crypto/cssm_init.h', |
476 ], | 476 ], |
477 } | 477 } |
478 ], | 478 ], |
479 [ 'OS == "win"', { | 479 [ 'OS == "win"', { |
480 'include_dirs': [ | 480 'include_dirs': [ |
481 '../chrome/third_party/wtl/include', | 481 '../chrome/third_party/wtl/include', |
482 ], | 482 ], |
483 'sources/': [ ['exclude', '_(linux|gtk|mac|posix|chromeos)\\.cc$'], | 483 'sources/': [ ['exclude', '_(linux|gtk|mac|posix|chromeos)\\.cc$'], |
484 ['exclude', '\\.mm?$' ] ], | 484 ['exclude', '\\.mm?$' ] ], |
485 'sources': [ | |
486 'window_impl.cc', | |
487 'window_impl.h', | |
488 ], | |
489 'sources!': [ | 485 'sources!': [ |
490 'data_pack.cc', | 486 'data_pack.cc', |
491 'event_recorder_stubs.cc', | 487 'event_recorder_stubs.cc', |
492 'file_descriptor_shuffle.cc', | 488 'file_descriptor_shuffle.cc', |
493 'message_pump_libevent.cc', | 489 'message_pump_libevent.cc', |
494 'string16.cc', | 490 'string16.cc', |
495 ], | 491 ], |
496 }, | 492 }, |
497 { # else: OS != "win" | 493 { # else: OS != "win" |
498 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], | 494 'dependencies': ['../third_party/libevent/libevent.gyp:libevent'], |
(...skipping 16 matching lines...) Expand all Loading... |
515 ], | 511 ], |
516 }, | 512 }, |
517 ], | 513 ], |
518 ], | 514 ], |
519 }, | 515 }, |
520 { | 516 { |
521 'target_name': 'base_gfx', | 517 'target_name': 'base_gfx', |
522 'type': '<(library)', | 518 'type': '<(library)', |
523 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551', | 519 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551', |
524 'sources': [ | 520 'sources': [ |
525 'gfx/gtk_native_view_id_manager.cc', | |
526 'gfx/gtk_native_view_id_manager.h', | |
527 'gfx/native_widget_types.h', | |
528 'gfx/native_widget_types_gtk.cc', | |
529 'gfx/point.cc', | 521 'gfx/point.cc', |
530 'gfx/point.h', | 522 'gfx/point.h', |
531 'gfx/rect.cc', | 523 'gfx/rect.cc', |
532 'gfx/rect.h', | 524 'gfx/rect.h', |
533 'gfx/size.cc', | 525 'gfx/size.cc', |
534 'gfx/size.h', | 526 'gfx/size.h', |
535 ], | 527 ], |
536 'mac_framework_dirs': [ | 528 'mac_framework_dirs': [ |
537 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram
eworks', | 529 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram
eworks', |
538 ], | 530 ], |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 ], | 837 ], |
846 }], | 838 }], |
847 ], | 839 ], |
848 } | 840 } |
849 | 841 |
850 # Local Variables: | 842 # Local Variables: |
851 # tab-width:2 | 843 # tab-width:2 |
852 # indent-tabs-mode:nil | 844 # indent-tabs-mode:nil |
853 # End: | 845 # End: |
854 # vim: set expandtab tabstop=2 shiftwidth=2: | 846 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |