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

Side by Side Diff: base/base.gypi

Issue 16020005: Fixed the racy code around the message-only window in base::MessagePumpForUI on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 7 years, 6 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
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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 'value_conversions.cc', 546 'value_conversions.cc',
547 'value_conversions.h', 547 'value_conversions.h',
548 'version.cc', 548 'version.cc',
549 'version.h', 549 'version.h',
550 'vlog.cc', 550 'vlog.cc',
551 'vlog.h', 551 'vlog.h',
552 'nix/mime_util_xdg.cc', 552 'nix/mime_util_xdg.cc',
553 'nix/mime_util_xdg.h', 553 'nix/mime_util_xdg.h',
554 'nix/xdg_util.cc', 554 'nix/xdg_util.cc',
555 'nix/xdg_util.h', 555 'nix/xdg_util.h',
556 'win/enum_variant.cc',
556 'win/enum_variant.h', 557 'win/enum_variant.h',
557 'win/enum_variant.cc',
558 'win/event_trace_consumer.h', 558 'win/event_trace_consumer.h',
559 'win/event_trace_controller.cc', 559 'win/event_trace_controller.cc',
560 'win/event_trace_controller.h', 560 'win/event_trace_controller.h',
561 'win/event_trace_provider.cc', 561 'win/event_trace_provider.cc',
562 'win/event_trace_provider.h', 562 'win/event_trace_provider.h',
563 'win/i18n.cc', 563 'win/i18n.cc',
564 'win/i18n.h', 564 'win/i18n.h',
565 'win/iat_patch_function.cc', 565 'win/iat_patch_function.cc',
566 'win/iat_patch_function.h', 566 'win/iat_patch_function.h',
567 'win/iunknown_impl.cc',
567 'win/iunknown_impl.h', 568 'win/iunknown_impl.h',
568 'win/iunknown_impl.cc', 569 'win/message_window.cc',
570 'win/message_window.h',
569 'win/metro.cc', 571 'win/metro.cc',
570 'win/metro.h', 572 'win/metro.h',
571 'win/object_watcher.cc', 573 'win/object_watcher.cc',
572 'win/object_watcher.h', 574 'win/object_watcher.h',
573 'win/registry.cc', 575 'win/registry.cc',
574 'win/registry.h', 576 'win/registry.h',
575 'win/resource_util.cc', 577 'win/resource_util.cc',
576 'win/resource_util.h', 578 'win/resource_util.h',
577 'win/sampling_profiler.cc', 579 'win/sampling_profiler.cc',
578 'win/sampling_profiler.h', 580 'win/sampling_profiler.h',
(...skipping 12 matching lines...) Expand all
591 'win/scoped_propvariant.h', 593 'win/scoped_propvariant.h',
592 'win/scoped_select_object.h', 594 'win/scoped_select_object.h',
593 'win/scoped_variant.cc', 595 'win/scoped_variant.cc',
594 'win/scoped_variant.h', 596 'win/scoped_variant.h',
595 'win/shortcut.cc', 597 'win/shortcut.cc',
596 'win/shortcut.h', 598 'win/shortcut.h',
597 'win/startup_information.cc', 599 'win/startup_information.cc',
598 'win/startup_information.h', 600 'win/startup_information.h',
599 'win/text_services_message_filter.cc', 601 'win/text_services_message_filter.cc',
600 'win/text_services_message_filter.h', 602 'win/text_services_message_filter.h',
603 'win/win_util.cc',
604 'win/win_util.h',
601 'win/windows_version.cc', 605 'win/windows_version.cc',
602 'win/windows_version.h', 606 'win/windows_version.h',
603 'win/win_util.cc',
604 'win/win_util.h',
605 'win/wrapped_window_proc.cc', 607 'win/wrapped_window_proc.cc',
606 'win/wrapped_window_proc.h', 608 'win/wrapped_window_proc.h',
607 ], 609 ],
608 'conditions': [ 610 'conditions': [
609 ['google_tv==1', { 611 ['google_tv==1', {
610 'sources': [ 612 'sources': [
611 'android/context_types.cc', 613 'android/context_types.cc',
612 'android/context_types.h', 614 'android/context_types.h',
613 ], 615 ],
614 }], 616 }],
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { 821 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', {
820 'sources/': [ 822 'sources/': [
821 ['exclude', '^third_party/nspr/'], 823 ['exclude', '^third_party/nspr/'],
822 ], 824 ],
823 }], 825 }],
824 ], 826 ],
825 }], 827 }],
826 ], 828 ],
827 }, 829 },
828 } 830 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/message_loop.cc » ('j') | base/message_pump_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698