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

Side by Side Diff: chrome/chrome_browser_ui.gypi

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit comment addressed 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
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 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 'browser/ui/app_list/search/launcher_search/launcher_search_provider.cc', 711 'browser/ui/app_list/search/launcher_search/launcher_search_provider.cc',
712 'browser/ui/app_list/search/launcher_search/launcher_search_provider.h', 712 'browser/ui/app_list/search/launcher_search/launcher_search_provider.h',
713 'browser/ui/app_list/search/launcher_search/launcher_search_result.cc', 713 'browser/ui/app_list/search/launcher_search/launcher_search_result.cc',
714 'browser/ui/app_list/search/launcher_search/launcher_search_result.h', 714 'browser/ui/app_list/search/launcher_search/launcher_search_result.h',
715 # On chromeos, file manager extension handles the file open/save dialog. 715 # On chromeos, file manager extension handles the file open/save dialog.
716 'browser/ui/views/select_file_dialog_extension.cc', 716 'browser/ui/views/select_file_dialog_extension.cc',
717 'browser/ui/views/select_file_dialog_extension.h', 717 'browser/ui/views/select_file_dialog_extension.h',
718 'browser/ui/views/select_file_dialog_extension_factory.cc', 718 'browser/ui/views/select_file_dialog_extension_factory.cc',
719 'browser/ui/views/select_file_dialog_extension_factory.h', 719 'browser/ui/views/select_file_dialog_extension_factory.h',
720 ], 720 ],
721 # ARC-only sources.
722 'chrome_browser_ui_chromeos_arc_sources': [
723 'browser/ui/app_list/arc_app_icon.cc',
724 'browser/ui/app_list/arc_app_icon.h',
725 'browser/ui/app_list/arc_app_item.cc',
726 'browser/ui/app_list/arc_app_item.h',
727 'browser/ui/app_list/arc_app_list_prefs_factory.cc',
728 'browser/ui/app_list/arc_app_list_prefs_factory.h',
729 'browser/ui/app_list/arc_app_list_prefs.cc',
730 'browser/ui/app_list/arc_app_list_prefs.h',
731 'browser/ui/app_list/arc_app_model_builder.cc',
732 'browser/ui/app_list/arc_app_model_builder.h',
733 ],
721 # ChromeOS sources that should not be included in the official build. 734 # ChromeOS sources that should not be included in the official build.
722 'chrome_browser_ui_chromeos_non_official_sources': [ 735 'chrome_browser_ui_chromeos_non_official_sources': [
723 'browser/ui/webui/chromeos/emulator/device_emulator_message_handler.cc', 736 'browser/ui/webui/chromeos/emulator/device_emulator_message_handler.cc',
724 'browser/ui/webui/chromeos/emulator/device_emulator_message_handler.h', 737 'browser/ui/webui/chromeos/emulator/device_emulator_message_handler.h',
725 'browser/ui/webui/chromeos/emulator/device_emulator_ui.cc', 738 'browser/ui/webui/chromeos/emulator/device_emulator_ui.cc',
726 'browser/ui/webui/chromeos/emulator/device_emulator_ui.h', 739 'browser/ui/webui/chromeos/emulator/device_emulator_ui.h',
727 ], 740 ],
728 # Mac sources, except when mac_views_browser==1 741 # Mac sources, except when mac_views_browser==1
729 'chrome_browser_ui_cocoa_sources': [ 742 'chrome_browser_ui_cocoa_sources': [
730 'browser/ui/cocoa/animatable_image.h', 743 'browser/ui/cocoa/animatable_image.h',
(...skipping 2200 matching lines...) Expand 10 before | Expand all | Expand 10 after
2931 ['chromeos==1', { 2944 ['chromeos==1', {
2932 'sources': [ '<@(chrome_browser_ui_chromeos_sources)' ], 2945 'sources': [ '<@(chrome_browser_ui_chromeos_sources)' ],
2933 'dependencies': [ 2946 'dependencies': [
2934 'browser_chromeos', 2947 'browser_chromeos',
2935 '../components/components.gyp:proximity_auth_webui', 2948 '../components/components.gyp:proximity_auth_webui',
2936 '../device/nfc/nfc.gyp:device_nfc', 2949 '../device/nfc/nfc.gyp:device_nfc',
2937 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos', 2950 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos',
2938 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources', 2951 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_resources',
2939 ], 2952 ],
2940 }], 2953 }],
2954 ['chromeos==1 and enable_arc == 1', {
elijahtaylor (use chromium) 2015/11/19 05:52:00 nit: looks like the convention is enable_arc==1
khmel1 2015/11/19 17:11:41 Actually there are different styles currently in t
elijahtaylor (use chromium) 2015/11/19 17:45:49 Sorry I was being super nitty and meant "enable_ar
khmel1 2015/11/24 09:41:03 :) Done
2955 'sources': [ '<@(chrome_browser_ui_chromeos_arc_sources)' ],
2956 }],
2941 ['use_cups==1', { 2957 ['use_cups==1', {
2942 'dependencies': [ 2958 'dependencies': [
2943 '../printing/printing.gyp:cups', 2959 '../printing/printing.gyp:cups',
2944 ], 2960 ],
2945 }], 2961 }],
2946 ['use_ash==1', { 2962 ['use_ash==1', {
2947 'sources': [ '<@(chrome_browser_ui_ash_sources)' ], 2963 'sources': [ '<@(chrome_browser_ui_ash_sources)' ],
2948 'dependencies': [ 2964 'dependencies': [
2949 '../ash/ash.gyp:ash', 2965 '../ash/ash.gyp:ash',
2950 '../ash/ash.gyp:ash_with_content', 2966 '../ash/ash.gyp:ash_with_content',
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
3271 ], 3287 ],
3272 'sources': [ 3288 'sources': [
3273 '<@(chrome_browser_ui_non_mobile_sources)', 3289 '<@(chrome_browser_ui_non_mobile_sources)',
3274 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', 3290 '<@(chrome_browser_ui_omnibox_non_mobile_sources)',
3275 ], 3291 ],
3276 }], 3292 }],
3277 ], 3293 ],
3278 }, 3294 },
3279 ], 3295 ],
3280 } 3296 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698