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 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1031 # despite the change in direction in order to prevent iOS regressions while | 1031 # despite the change in direction in order to prevent iOS regressions while |
1032 # componentization is in progress. | 1032 # componentization is in progress. |
1033 # TODO(stuartmorgan): Remove this once enough has been componentized that | 1033 # TODO(stuartmorgan): Remove this once enough has been componentized that |
1034 # there's no value in building any of chrome/ for iOS. | 1034 # there's no value in building any of chrome/ for iOS. |
1035 'chrome_browser_ios_sources': [ | 1035 'chrome_browser_ios_sources': [ |
1036 'browser/browser_process.cc', | 1036 'browser/browser_process.cc', |
1037 'browser/browser_process.h', | 1037 'browser/browser_process.h', |
1038 'browser/browser_process_platform_part_base.cc', | 1038 'browser/browser_process_platform_part_base.cc', |
1039 'browser/browser_process_platform_part_base.h', | 1039 'browser/browser_process_platform_part_base.h', |
1040 ], | 1040 ], |
| 1041 # Desktop Linux, ChromeOS, and Windows. |
| 1042 'chrome_browser_non_mac_desktop_sources': [ |
| 1043 'browser/renderer_context_menu/spelling_options_submenu_observer.h', |
| 1044 'browser/renderer_context_menu/spelling_options_submenu_observer.cc', |
| 1045 ], |
1041 # Desktop linux, doesn't count ChromeOS. | 1046 # Desktop linux, doesn't count ChromeOS. |
1042 'chrome_browser_linux_desktop_sources': [ | 1047 'chrome_browser_linux_desktop_sources': [ |
1043 'browser/first_run/upgrade_util.cc', | 1048 'browser/first_run/upgrade_util.cc', |
1044 'browser/first_run/upgrade_util_linux.cc', | 1049 'browser/first_run/upgrade_util_linux.cc', |
1045 'browser/first_run/upgrade_util_linux.h', | 1050 'browser/first_run/upgrade_util_linux.h', |
1046 'browser/fullscreen_aurax11.cc', | 1051 'browser/fullscreen_aurax11.cc', |
1047 'browser/icon_loader_auralinux.cc', | 1052 'browser/icon_loader_auralinux.cc', |
1048 'browser/password_manager/native_backend_kwallet_x.cc', | 1053 'browser/password_manager/native_backend_kwallet_x.cc', |
1049 'browser/password_manager/native_backend_kwallet_x.h', | 1054 'browser/password_manager/native_backend_kwallet_x.h', |
1050 'browser/platform_util_linux.cc', | 1055 'browser/platform_util_linux.cc', |
(...skipping 2850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3901 # x11 build | 3906 # x11 build |
3902 ['use_x11==1', { | 3907 ['use_x11==1', { |
3903 'dependencies': [ | 3908 'dependencies': [ |
3904 '../build/linux/system.gyp:x11', | 3909 '../build/linux/system.gyp:x11', |
3905 '../ui/events/devices/events_devices.gyp:events_devices', | 3910 '../ui/events/devices/events_devices.gyp:events_devices', |
3906 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', | 3911 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
3907 ], | 3912 ], |
3908 }], | 3913 }], |
3909 ], | 3914 ], |
3910 }], | 3915 }], |
| 3916 ['OS=="linux" or OS=="win"', { |
| 3917 'sources': [ '<@(chrome_browser_non_mac_desktop_sources)' ], |
| 3918 }], |
3911 ['desktop_linux==1', { | 3919 ['desktop_linux==1', { |
3912 'sources': [ '<@(chrome_browser_linux_desktop_sources)' ], | 3920 'sources': [ '<@(chrome_browser_linux_desktop_sources)' ], |
3913 }], | 3921 }], |
3914 ['enable_plugin_installation==1', { | 3922 ['enable_plugin_installation==1', { |
3915 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ], | 3923 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ], |
3916 }], | 3924 }], |
3917 ['enable_app_list==1', { | 3925 ['enable_app_list==1', { |
3918 'dependencies': [ | 3926 'dependencies': [ |
3919 '../ui/app_list/app_list.gyp:app_list', | 3927 '../ui/app_list/app_list.gyp:app_list', |
3920 ] | 3928 ] |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4193 '../components/components.gyp:omnibox_browser', | 4201 '../components/components.gyp:omnibox_browser', |
4194 '../components/components.gyp:rlz', | 4202 '../components/components.gyp:rlz', |
4195 '../components/components.gyp:search_engines', | 4203 '../components/components.gyp:search_engines', |
4196 '../rlz/rlz.gyp:rlz_lib', | 4204 '../rlz/rlz.gyp:rlz_lib', |
4197 ], | 4205 ], |
4198 }, | 4206 }, |
4199 ], | 4207 ], |
4200 }], | 4208 }], |
4201 ], | 4209 ], |
4202 } | 4210 } |
OLD | NEW |