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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 1421083003: Introduces window_finder_android.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reviews Created 5 years, 1 month 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 | « chrome/browser/ui/views/tabs/window_finder_x11.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 # There are two sections of sources: 7 # There are two sections of sources:
8 # * "Platform"-based sources (OS, toolkit, etc.) 8 # * "Platform"-based sources (OS, toolkit, etc.)
9 # * Feature/directory-based sources (e.g., history, printing) 9 # * Feature/directory-based sources (e.g., history, printing)
10 10
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 'browser/ui/views/frame/browser_frame_ash.h', 635 'browser/ui/views/frame/browser_frame_ash.h',
636 'browser/ui/views/frame/browser_header_painter_ash.cc', 636 'browser/ui/views/frame/browser_header_painter_ash.cc',
637 'browser/ui/views/frame/browser_header_painter_ash.h', 637 'browser/ui/views/frame/browser_header_painter_ash.h',
638 'browser/ui/views/frame/browser_non_client_frame_view_ash.cc', 638 'browser/ui/views/frame/browser_non_client_frame_view_ash.cc',
639 'browser/ui/views/frame/browser_non_client_frame_view_ash.h', 639 'browser/ui/views/frame/browser_non_client_frame_view_ash.h',
640 'browser/ui/views/frame/immersive_mode_controller_ash.cc', 640 'browser/ui/views/frame/immersive_mode_controller_ash.cc',
641 'browser/ui/views/frame/immersive_mode_controller_ash.h', 641 'browser/ui/views/frame/immersive_mode_controller_ash.h',
642 'browser/ui/views/frame/web_app_left_header_view_ash.cc', 642 'browser/ui/views/frame/web_app_left_header_view_ash.cc',
643 'browser/ui/views/frame/web_app_left_header_view_ash.h', 643 'browser/ui/views/frame/web_app_left_header_view_ash.h',
644 'browser/ui/views/tabs/window_finder_ash.cc', 644 'browser/ui/views/tabs/window_finder_ash.cc',
645 'browser/ui/views/tabs/window_finder_impl.h',
646 'browser/ui/views/tabs/window_finder_impl.cc',
647 ],
648 # Used when Android + Views.
649 'chrome_browser_ui_views_android_sources': [
650 'browser/ui/views/tabs/window_finder_android.cc',
651 'browser/ui/views/tabs/window_finder_impl.h',
652 'browser/ui/views/tabs/window_finder_impl.cc',
645 ], 653 ],
646 # Used when ash is disabled. 654 # Used when ash is disabled.
647 'chrome_browser_ui_non_ash_sources': [ 655 'chrome_browser_ui_non_ash_sources': [
648 'browser/ui/views/touch_uma/touch_uma.cc', 656 'browser/ui/views/touch_uma/touch_uma.cc',
649 ], 657 ],
650 # Cross-platform aura sources. 658 # Cross-platform aura sources.
651 'chrome_browser_ui_aura_sources': [ 659 'chrome_browser_ui_aura_sources': [
652 'browser/ui/aura/accessibility/automation_manager_aura.cc', 660 'browser/ui/aura/accessibility/automation_manager_aura.cc',
653 'browser/ui/aura/accessibility/automation_manager_aura.h', 661 'browser/ui/aura/accessibility/automation_manager_aura.h',
654 'browser/ui/aura/accessibility/ax_root_obj_wrapper.cc', 662 'browser/ui/aura/accessibility/ax_root_obj_wrapper.cc',
(...skipping 2304 matching lines...) Expand 10 before | Expand all | Expand 10 after
2959 'sources': [ '<@(chrome_browser_ui_views_non_mac_sources)' ], 2967 'sources': [ '<@(chrome_browser_ui_views_non_mac_sources)' ],
2960 'dependencies': [ 2968 'dependencies': [
2961 '../ui/gfx/gfx.gyp:gfx_vector_icons', 2969 '../ui/gfx/gfx.gyp:gfx_vector_icons',
2962 ], 2970 ],
2963 'conditions': [ 2971 'conditions': [
2964 ['enable_extensions==1', { 2972 ['enable_extensions==1', {
2965 'sources': [ '<@(chrome_browser_ui_views_extensions_non_mac_so urces)' ], 2973 'sources': [ '<@(chrome_browser_ui_views_extensions_non_mac_so urces)' ],
2966 }], 2974 }],
2967 ], 2975 ],
2968 }], 2976 }],
2977 ['OS=="android"', {
2978 'sources': [ '<@(chrome_browser_ui_views_android_sources)' ],
2979 }],
2969 ['enable_extensions==1', { 2980 ['enable_extensions==1', {
2970 'dependencies': [ 2981 'dependencies': [
2971 '<(DEPTH)/extensions/components/extensions_components.gyp:native _app_window', 2982 '<(DEPTH)/extensions/components/extensions_components.gyp:native _app_window',
2972 ], 2983 ],
2973 }], 2984 }],
2974 ], 2985 ],
2975 }], 2986 }],
2976 ['use_aura==1 and chromeos==0 and use_ozone==0 and OS=="linux"', { 2987 ['use_aura==1 and chromeos==0 and use_ozone==0 and OS=="linux"', {
2977 'dependencies': [ 2988 'dependencies': [
2978 # gtk2 is the only component that can interact with gtk2 in our new 2989 # gtk2 is the only component that can interact with gtk2 in our new
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
3251 ], 3262 ],
3252 'sources': [ 3263 'sources': [
3253 '<@(chrome_browser_ui_non_mobile_sources)', 3264 '<@(chrome_browser_ui_non_mobile_sources)',
3254 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', 3265 '<@(chrome_browser_ui_omnibox_non_mobile_sources)',
3255 ], 3266 ],
3256 }], 3267 }],
3257 ], 3268 ],
3258 }, 3269 },
3259 ], 3270 ],
3260 } 3271 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/tabs/window_finder_x11.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698