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