OLD | NEW |
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 1030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1041 # despite the change in direction in order to prevent iOS regressions while | 1041 # despite the change in direction in order to prevent iOS regressions while |
1042 # componentization is in progress. | 1042 # componentization is in progress. |
1043 # TODO(stuartmorgan): Remove this once enough has been componentized that | 1043 # TODO(stuartmorgan): Remove this once enough has been componentized that |
1044 # there's no value in building any of chrome/ for iOS. | 1044 # there's no value in building any of chrome/ for iOS. |
1045 'chrome_browser_ios_sources': [ | 1045 'chrome_browser_ios_sources': [ |
1046 'browser/browser_process.cc', | 1046 'browser/browser_process.cc', |
1047 'browser/browser_process.h', | 1047 'browser/browser_process.h', |
1048 'browser/browser_process_platform_part_base.cc', | 1048 'browser/browser_process_platform_part_base.cc', |
1049 'browser/browser_process_platform_part_base.h', | 1049 'browser/browser_process_platform_part_base.h', |
1050 ], | 1050 ], |
| 1051 # Desktop Linux, ChromeOS, and Windows. |
| 1052 'chrome_browser_non_mac_desktop_sources': [ |
| 1053 'browser/renderer_context_menu/spelling_options_submenu_observer.h', |
| 1054 'browser/renderer_context_menu/spelling_options_submenu_observer.cc', |
| 1055 ], |
1051 # Desktop linux, doesn't count ChromeOS. | 1056 # Desktop linux, doesn't count ChromeOS. |
1052 'chrome_browser_linux_desktop_sources': [ | 1057 'chrome_browser_linux_desktop_sources': [ |
1053 'browser/first_run/upgrade_util.cc', | 1058 'browser/first_run/upgrade_util.cc', |
1054 'browser/first_run/upgrade_util_linux.cc', | 1059 'browser/first_run/upgrade_util_linux.cc', |
1055 'browser/first_run/upgrade_util_linux.h', | 1060 'browser/first_run/upgrade_util_linux.h', |
1056 'browser/fullscreen_aurax11.cc', | 1061 'browser/fullscreen_aurax11.cc', |
1057 'browser/icon_loader_auralinux.cc', | 1062 'browser/icon_loader_auralinux.cc', |
1058 'browser/password_manager/native_backend_kwallet_x.cc', | 1063 'browser/password_manager/native_backend_kwallet_x.cc', |
1059 'browser/password_manager/native_backend_kwallet_x.h', | 1064 'browser/password_manager/native_backend_kwallet_x.h', |
1060 'browser/platform_util_linux.cc', | 1065 'browser/platform_util_linux.cc', |
(...skipping 2850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3911 # x11 build | 3916 # x11 build |
3912 ['use_x11==1', { | 3917 ['use_x11==1', { |
3913 'dependencies': [ | 3918 'dependencies': [ |
3914 '../build/linux/system.gyp:x11', | 3919 '../build/linux/system.gyp:x11', |
3915 '../ui/events/devices/events_devices.gyp:events_devices', | 3920 '../ui/events/devices/events_devices.gyp:events_devices', |
3916 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', | 3921 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
3917 ], | 3922 ], |
3918 }], | 3923 }], |
3919 ], | 3924 ], |
3920 }], | 3925 }], |
| 3926 ['OS=="linux" or OS=="win"', { |
| 3927 'sources': [ '<@(chrome_browser_non_mac_desktop_sources)' ], |
| 3928 }], |
3921 ['desktop_linux==1', { | 3929 ['desktop_linux==1', { |
3922 'sources': [ '<@(chrome_browser_linux_desktop_sources)' ], | 3930 'sources': [ '<@(chrome_browser_linux_desktop_sources)' ], |
3923 }], | 3931 }], |
3924 ['enable_plugin_installation==1', { | 3932 ['enable_plugin_installation==1', { |
3925 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ], | 3933 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ], |
3926 }], | 3934 }], |
3927 ['enable_app_list==1', { | 3935 ['enable_app_list==1', { |
3928 'dependencies': [ | 3936 'dependencies': [ |
3929 '../ui/app_list/app_list.gyp:app_list', | 3937 '../ui/app_list/app_list.gyp:app_list', |
3930 ] | 3938 ] |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4191 '../components/components.gyp:rlz', | 4199 '../components/components.gyp:rlz', |
4192 '../components/components.gyp:search_engines', | 4200 '../components/components.gyp:search_engines', |
4193 '../rlz/rlz.gyp:rlz_lib', | 4201 '../rlz/rlz.gyp:rlz_lib', |
4194 'common', | 4202 'common', |
4195 ], | 4203 ], |
4196 }, | 4204 }, |
4197 ], | 4205 ], |
4198 }], | 4206 }], |
4199 ], | 4207 ], |
4200 } | 4208 } |
OLD | NEW |