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

Side by Side Diff: ui/views/views.gyp

Issue 1871233002: Move LatencyInfo to ui/latency_info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix some more gyp issues Created 4 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
« no previous file with comments | « ui/views/BUILD.gn ('k') | ui/wm/wm.gyp » ('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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 # Sources lists shared with GN build. 7 # Sources lists shared with GN build.
8 'views_sources': [ 8 'views_sources': [
9 'accessibility/native_view_accessibility.cc', 9 'accessibility/native_view_accessibility.cc',
10 'accessibility/native_view_accessibility.h', 10 'accessibility/native_view_accessibility.h',
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 '../base/ui_base.gyp:ui_base', 676 '../base/ui_base.gyp:ui_base',
677 '../compositor/compositor.gyp:compositor', 677 '../compositor/compositor.gyp:compositor',
678 '../display/display.gyp:display', 678 '../display/display.gyp:display',
679 '../events/events.gyp:events', 679 '../events/events.gyp:events',
680 '../events/events.gyp:events_base', 680 '../events/events.gyp:events_base',
681 '../events/platform/events_platform.gyp:events_platform', 681 '../events/platform/events_platform.gyp:events_platform',
682 '../gfx/gfx.gyp:gfx', 682 '../gfx/gfx.gyp:gfx',
683 '../gfx/gfx.gyp:gfx_geometry', 683 '../gfx/gfx.gyp:gfx_geometry',
684 '../gfx/gfx.gyp:gfx_range', 684 '../gfx/gfx.gyp:gfx_range',
685 '../gfx/gfx.gyp:gfx_vector_icons', 685 '../gfx/gfx.gyp:gfx_vector_icons',
686 '../latency_info/latency_info.gyp:latency_info',
686 '../native_theme/native_theme.gyp:native_theme', 687 '../native_theme/native_theme.gyp:native_theme',
687 '../resources/ui_resources.gyp:ui_resources', 688 '../resources/ui_resources.gyp:ui_resources',
688 '../strings/ui_strings.gyp:ui_strings', 689 '../strings/ui_strings.gyp:ui_strings',
689 'resources/views_resources.gyp:views_resources', 690 'resources/views_resources.gyp:views_resources',
690 ], 691 ],
691 'all_dependent_settings': { 692 'all_dependent_settings': {
692 'defines': [ 693 'defines': [
693 'TOOLKIT_VIEWS=1', 694 'TOOLKIT_VIEWS=1',
694 ], 695 ],
695 }, 696 },
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 '../base/ime/ui_base_ime.gyp:ui_base_ime', 889 '../base/ime/ui_base_ime.gyp:ui_base_ime',
889 '../base/ui_base.gyp:ui_base', 890 '../base/ui_base.gyp:ui_base',
890 '../base/ui_base.gyp:ui_base_test_support', 891 '../base/ui_base.gyp:ui_base_test_support',
891 '../compositor/compositor.gyp:compositor', 892 '../compositor/compositor.gyp:compositor',
892 '../events/events.gyp:events', 893 '../events/events.gyp:events',
893 '../events/events.gyp:events_base', 894 '../events/events.gyp:events_base',
894 '../events/events.gyp:events_test_support', 895 '../events/events.gyp:events_test_support',
895 '../gfx/gfx.gyp:gfx', 896 '../gfx/gfx.gyp:gfx',
896 '../gfx/gfx.gyp:gfx_geometry', 897 '../gfx/gfx.gyp:gfx_geometry',
897 '../gfx/gfx.gyp:gfx_range', 898 '../gfx/gfx.gyp:gfx_range',
899 '../latency_info/latency_info.gyp:latency_info',
898 '../native_theme/native_theme.gyp:native_theme', 900 '../native_theme/native_theme.gyp:native_theme',
899 '../resources/ui_resources.gyp:ui_resources', 901 '../resources/ui_resources.gyp:ui_resources',
900 '../resources/ui_resources.gyp:ui_test_pak', 902 '../resources/ui_resources.gyp:ui_test_pak',
901 '../strings/ui_strings.gyp:ui_strings', 903 '../strings/ui_strings.gyp:ui_strings',
902 'resources/views_resources.gyp:views_resources', 904 'resources/views_resources.gyp:views_resources',
903 'views', 905 'views',
904 'views_test_support', 906 'views_test_support',
905 ], 907 ],
906 'include_dirs': [ 908 'include_dirs': [
907 '..', 909 '..',
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1038 '../aura/aura.gyp:aura', 1040 '../aura/aura.gyp:aura',
1039 '../wm/wm.gyp:wm', 1041 '../wm/wm.gyp:wm',
1040 ], 1042 ],
1041 }], 1043 }],
1042 ], 1044 ],
1043 }, # target_name: macviews_interactive_ui_tests 1045 }, # target_name: macviews_interactive_ui_tests
1044 ], # targets 1046 ], # targets
1045 }], 1047 }],
1046 ], # conditions 1048 ], # conditions
1047 } 1049 }
OLDNEW
« no previous file with comments | « ui/views/BUILD.gn ('k') | ui/wm/wm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698