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 # 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 2937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2948 'dependencies': [ | 2948 'dependencies': [ |
2949 '../ash/ash.gyp:ash', | 2949 '../ash/ash.gyp:ash', |
2950 '../ash/ash.gyp:ash_with_content', | 2950 '../ash/ash.gyp:ash_with_content', |
2951 '../ash/ash_strings.gyp:ash_strings', | 2951 '../ash/ash_strings.gyp:ash_strings', |
2952 '../components/components.gyp:user_manager', | 2952 '../components/components.gyp:user_manager', |
2953 ], | 2953 ], |
2954 'conditions': [ | 2954 'conditions': [ |
2955 ['chromeos == 0', { | 2955 ['chromeos == 0', { |
2956 'sources': [ '<@(chrome_browser_ui_ash_non_chromeos)' ], | 2956 'sources': [ '<@(chrome_browser_ui_ash_non_chromeos)' ], |
2957 }], | 2957 }], |
| 2958 ['enable_wayland_server==1', { |
| 2959 'dependencies': [ |
| 2960 '../components/components.gyp:exo', |
| 2961 '../components/components.gyp:exo_wayland', |
| 2962 ], |
| 2963 }], |
2958 ], | 2964 ], |
2959 }, { # use_ash==0 | 2965 }, { # use_ash==0 |
2960 'sources': [ '<@(chrome_browser_ui_non_ash_sources)' ], | 2966 'sources': [ '<@(chrome_browser_ui_non_ash_sources)' ], |
2961 }], | 2967 }], |
2962 ['toolkit_views==1', { | 2968 ['toolkit_views==1', { |
2963 'sources': [ '<@(chrome_browser_ui_views_sources)' ], | 2969 'sources': [ '<@(chrome_browser_ui_views_sources)' ], |
2964 'dependencies': [ | 2970 'dependencies': [ |
2965 '<(DEPTH)/components/components.gyp:constrained_window', | 2971 '<(DEPTH)/components/components.gyp:constrained_window', |
2966 ], | 2972 ], |
2967 'conditions': [ | 2973 'conditions': [ |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3271 ], | 3277 ], |
3272 'sources': [ | 3278 'sources': [ |
3273 '<@(chrome_browser_ui_non_mobile_sources)', | 3279 '<@(chrome_browser_ui_non_mobile_sources)', |
3274 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', | 3280 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', |
3275 ], | 3281 ], |
3276 }], | 3282 }], |
3277 ], | 3283 ], |
3278 }, | 3284 }, |
3279 ], | 3285 ], |
3280 } | 3286 } |
OLD | NEW |