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

Side by Side Diff: base/base.gypi

Issue 15261005: Allow multiple base::MessagePumpForUI instances to be created simultanenously on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CR feedback Created 7 years, 7 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 'value_conversions.cc', 532 'value_conversions.cc',
533 'value_conversions.h', 533 'value_conversions.h',
534 'version.cc', 534 'version.cc',
535 'version.h', 535 'version.h',
536 'vlog.cc', 536 'vlog.cc',
537 'vlog.h', 537 'vlog.h',
538 'nix/mime_util_xdg.cc', 538 'nix/mime_util_xdg.cc',
539 'nix/mime_util_xdg.h', 539 'nix/mime_util_xdg.h',
540 'nix/xdg_util.cc', 540 'nix/xdg_util.cc',
541 'nix/xdg_util.h', 541 'nix/xdg_util.h',
542 'win/enum_variant.cc',
542 'win/enum_variant.h', 543 'win/enum_variant.h',
543 'win/enum_variant.cc',
544 'win/event_trace_consumer.h', 544 'win/event_trace_consumer.h',
545 'win/event_trace_controller.cc', 545 'win/event_trace_controller.cc',
546 'win/event_trace_controller.h', 546 'win/event_trace_controller.h',
547 'win/event_trace_provider.cc', 547 'win/event_trace_provider.cc',
548 'win/event_trace_provider.h', 548 'win/event_trace_provider.h',
549 'win/i18n.cc', 549 'win/i18n.cc',
550 'win/i18n.h', 550 'win/i18n.h',
551 'win/iat_patch_function.cc', 551 'win/iat_patch_function.cc',
552 'win/iat_patch_function.h', 552 'win/iat_patch_function.h',
553 'win/iunknown_impl.cc',
553 'win/iunknown_impl.h', 554 'win/iunknown_impl.h',
554 'win/iunknown_impl.cc', 555 'win/message_window.cc',
556 'win/message_window.h',
555 'win/metro.cc', 557 'win/metro.cc',
556 'win/metro.h', 558 'win/metro.h',
557 'win/object_watcher.cc', 559 'win/object_watcher.cc',
558 'win/object_watcher.h', 560 'win/object_watcher.h',
559 'win/registry.cc', 561 'win/registry.cc',
560 'win/registry.h', 562 'win/registry.h',
561 'win/resource_util.cc', 563 'win/resource_util.cc',
562 'win/resource_util.h', 564 'win/resource_util.h',
563 'win/sampling_profiler.cc', 565 'win/sampling_profiler.cc',
564 'win/sampling_profiler.h', 566 'win/sampling_profiler.h',
(...skipping 12 matching lines...) Expand all
577 'win/scoped_propvariant.h', 579 'win/scoped_propvariant.h',
578 'win/scoped_select_object.h', 580 'win/scoped_select_object.h',
579 'win/scoped_variant.cc', 581 'win/scoped_variant.cc',
580 'win/scoped_variant.h', 582 'win/scoped_variant.h',
581 'win/shortcut.cc', 583 'win/shortcut.cc',
582 'win/shortcut.h', 584 'win/shortcut.h',
583 'win/startup_information.cc', 585 'win/startup_information.cc',
584 'win/startup_information.h', 586 'win/startup_information.h',
585 'win/text_services_message_filter.cc', 587 'win/text_services_message_filter.cc',
586 'win/text_services_message_filter.h', 588 'win/text_services_message_filter.h',
589 'win/win_util.cc',
590 'win/win_util.h',
587 'win/windows_version.cc', 591 'win/windows_version.cc',
588 'win/windows_version.h', 592 'win/windows_version.h',
589 'win/win_util.cc',
590 'win/win_util.h',
591 'win/wrapped_window_proc.cc', 593 'win/wrapped_window_proc.cc',
592 'win/wrapped_window_proc.h', 594 'win/wrapped_window_proc.h',
593 ], 595 ],
594 'conditions': [ 596 'conditions': [
595 ['google_tv==1', { 597 ['google_tv==1', {
596 'sources': [ 598 'sources': [
597 'android/context_types.cc', 599 'android/context_types.cc',
598 'android/context_types.h', 600 'android/context_types.h',
599 ], 601 ],
600 }], 602 }],
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { 796 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', {
795 'sources/': [ 797 'sources/': [
796 ['exclude', '^third_party/nspr/'], 798 ['exclude', '^third_party/nspr/'],
797 ], 799 ],
798 }], 800 }],
799 ], 801 ],
800 }], 802 }],
801 ], 803 ],
802 }, 804 },
803 } 805 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/message_pump_win.h » ('j') | base/message_pump_win.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698