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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1647723002: [win/cros/lin] Add back the spellcheck menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix signed/unsigned warning. Created 4 years, 10 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
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 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 # despite the change in direction in order to prevent iOS regressions while 1037 # despite the change in direction in order to prevent iOS regressions while
1038 # componentization is in progress. 1038 # componentization is in progress.
1039 # TODO(stuartmorgan): Remove this once enough has been componentized that 1039 # TODO(stuartmorgan): Remove this once enough has been componentized that
1040 # there's no value in building any of chrome/ for iOS. 1040 # there's no value in building any of chrome/ for iOS.
1041 'chrome_browser_ios_sources': [ 1041 'chrome_browser_ios_sources': [
1042 'browser/browser_process.cc', 1042 'browser/browser_process.cc',
1043 'browser/browser_process.h', 1043 'browser/browser_process.h',
1044 'browser/browser_process_platform_part_base.cc', 1044 'browser/browser_process_platform_part_base.cc',
1045 'browser/browser_process_platform_part_base.h', 1045 'browser/browser_process_platform_part_base.h',
1046 ], 1046 ],
1047 # Desktop Linux, ChromeOS, and Windows.
1048 'chrome_browser_non_mac_desktop_sources': [
1049 'browser/renderer_context_menu/spelling_options_submenu_observer.h',
1050 'browser/renderer_context_menu/spelling_options_submenu_observer.cc',
1051 ],
1047 # Desktop linux, doesn't count ChromeOS. 1052 # Desktop linux, doesn't count ChromeOS.
1048 'chrome_browser_linux_desktop_sources': [ 1053 'chrome_browser_linux_desktop_sources': [
1049 'browser/first_run/upgrade_util.cc', 1054 'browser/first_run/upgrade_util.cc',
1050 'browser/first_run/upgrade_util_linux.cc', 1055 'browser/first_run/upgrade_util_linux.cc',
1051 'browser/first_run/upgrade_util_linux.h', 1056 'browser/first_run/upgrade_util_linux.h',
1052 'browser/fullscreen_aurax11.cc', 1057 'browser/fullscreen_aurax11.cc',
1053 'browser/icon_loader_auralinux.cc', 1058 'browser/icon_loader_auralinux.cc',
1054 'browser/password_manager/native_backend_kwallet_x.cc', 1059 'browser/password_manager/native_backend_kwallet_x.cc',
1055 'browser/password_manager/native_backend_kwallet_x.h', 1060 'browser/password_manager/native_backend_kwallet_x.h',
1056 'browser/platform_util_linux.cc', 1061 'browser/platform_util_linux.cc',
(...skipping 2843 matching lines...) Expand 10 before | Expand all | Expand 10 after
3900 # x11 build 3905 # x11 build
3901 ['use_x11==1', { 3906 ['use_x11==1', {
3902 'dependencies': [ 3907 'dependencies': [
3903 '../build/linux/system.gyp:x11', 3908 '../build/linux/system.gyp:x11',
3904 '../ui/events/devices/events_devices.gyp:events_devices', 3909 '../ui/events/devices/events_devices.gyp:events_devices',
3905 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', 3910 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
3906 ], 3911 ],
3907 }], 3912 }],
3908 ], 3913 ],
3909 }], 3914 }],
3915 ['OS=="linux" or OS=="win"', {
3916 'sources': [ '<@(chrome_browser_non_mac_desktop_sources)' ],
3917 }],
3910 ['desktop_linux==1', { 3918 ['desktop_linux==1', {
3911 'sources': [ '<@(chrome_browser_linux_desktop_sources)' ], 3919 'sources': [ '<@(chrome_browser_linux_desktop_sources)' ],
3912 }], 3920 }],
3913 ['enable_plugin_installation==1', { 3921 ['enable_plugin_installation==1', {
3914 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ], 3922 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ],
3915 }], 3923 }],
3916 ['enable_app_list==1', { 3924 ['enable_app_list==1', {
3917 'dependencies': [ 3925 'dependencies': [
3918 '../ui/app_list/app_list.gyp:app_list', 3926 '../ui/app_list/app_list.gyp:app_list',
3919 ] 3927 ]
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
4192 '../components/components.gyp:omnibox_browser', 4200 '../components/components.gyp:omnibox_browser',
4193 '../components/components.gyp:rlz', 4201 '../components/components.gyp:rlz',
4194 '../components/components.gyp:search_engines', 4202 '../components/components.gyp:search_engines',
4195 '../rlz/rlz.gyp:rlz_lib', 4203 '../rlz/rlz.gyp:rlz_lib',
4196 ], 4204 ],
4197 }, 4205 },
4198 ], 4206 ],
4199 }], 4207 }],
4200 ], 4208 ],
4201 } 4209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698