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

Side by Side Diff: ui/ui.gyp

Issue 11878013: Make ui_controls only usable from interactive_ui_tests. This has two benefits: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | « ui/aura/ui_controls_aura.h ('k') | ui/ui_controls/ui_controls.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) 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 'gfx/vector2d_conversions.cc', 525 'gfx/vector2d_conversions.cc',
526 'gfx/vector2d_conversions.h', 526 'gfx/vector2d_conversions.h',
527 'gfx/vector2d_f.cc', 527 'gfx/vector2d_f.cc',
528 'gfx/vector2d_f.h', 528 'gfx/vector2d_f.h',
529 'gfx/vector3d_f.cc', 529 'gfx/vector3d_f.cc',
530 'gfx/vector3d_f.h', 530 'gfx/vector3d_f.h',
531 'gfx/video_decode_acceleration_support_mac.h', 531 'gfx/video_decode_acceleration_support_mac.h',
532 'gfx/video_decode_acceleration_support_mac.mm', 532 'gfx/video_decode_acceleration_support_mac.mm',
533 'notifications/notification_types.h', 533 'notifications/notification_types.h',
534 'notifications/notification_types.cc', 534 'notifications/notification_types.cc',
535 'ui_controls/ui_controls.h',
536 'ui_controls/ui_controls_aura.cc',
537 'ui_controls/ui_controls_gtk.cc',
538 'ui_controls/ui_controls_internal_win.cc',
539 'ui_controls/ui_controls_internal_win.h',
540 'ui_controls/ui_controls_mac.mm',
541 'ui_controls/ui_controls_win.cc',
542 ], 535 ],
543 'target_conditions': [ 536 'target_conditions': [
544 ['OS == "ios"', { 537 ['OS == "ios"', {
545 'sources/': [ 538 'sources/': [
546 ['include', '^base/l10n/l10n_util_mac\\.mm$'], 539 ['include', '^base/l10n/l10n_util_mac\\.mm$'],
547 ], 540 ],
548 }], 541 }],
549 ], 542 ],
550 'conditions': [ 543 'conditions': [
551 ['OS!="ios"', { 544 ['OS!="ios"', {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 ['exclude', 'base/dialogs/select_file_dialog_mac.mm'], 593 ['exclude', 'base/dialogs/select_file_dialog_mac.mm'],
601 ['exclude', 'base/dialogs/select_file_dialog_win.cc'], 594 ['exclude', 'base/dialogs/select_file_dialog_win.cc'],
602 ['exclude', 'base/work_area_watcher_observer.h'], 595 ['exclude', 'base/work_area_watcher_observer.h'],
603 ['exclude', 'base/x/active_window_watcher_x.cc'], 596 ['exclude', 'base/x/active_window_watcher_x.cc'],
604 ['exclude', 'base/x/active_window_watcher_x.h'], 597 ['exclude', 'base/x/active_window_watcher_x.h'],
605 ['exclude', 'base/x/active_window_watcher_x_observer.h'], 598 ['exclude', 'base/x/active_window_watcher_x_observer.h'],
606 ['exclude', 'base/x/root_window_property_watcher_x.cc'], 599 ['exclude', 'base/x/root_window_property_watcher_x.cc'],
607 ['exclude', 'base/x/root_window_property_watcher_x.h'], 600 ['exclude', 'base/x/root_window_property_watcher_x.h'],
608 ['exclude', 'base/x/work_area_watcher_x.cc'], 601 ['exclude', 'base/x/work_area_watcher_x.cc'],
609 ['exclude', 'base/x/work_area_watcher_x.h'], 602 ['exclude', 'base/x/work_area_watcher_x.h'],
610 ['exclude', 'ui_controls_win.cc'],
611 ], 603 ],
612 }, { # use_aura!=1 604 }, { # use_aura!=1
613 'sources!': [ 605 'sources!': [
614 'base/cursor/cursor.cc', 606 'base/cursor/cursor.cc',
615 'base/cursor/cursor.h', 607 'base/cursor/cursor.h',
616 'base/cursor/cursor_loader_x11.cc', 608 'base/cursor/cursor_loader_x11.cc',
617 'base/cursor/cursor_loader_x11.h', 609 'base/cursor/cursor_loader_x11.h',
618 'base/cursor/cursor_win.cc', 610 'base/cursor/cursor_win.cc',
619 'base/cursor/cursor_x11.cc', 611 'base/cursor/cursor_x11.cc',
620 ] 612 ]
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 }, 888 },
897 'dependencies': [ 889 'dependencies': [
898 '../base/base.gyp:base_java', 890 '../base/base.gyp:base_java',
899 ], 891 ],
900 'includes': [ '../build/java.gypi' ], 892 'includes': [ '../build/java.gypi' ],
901 }, 893 },
902 ], 894 ],
903 }], 895 }],
904 ], 896 ],
905 } 897 }
OLDNEW
« no previous file with comments | « ui/aura/ui_controls_aura.h ('k') | ui/ui_controls/ui_controls.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698