| 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 3043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3054 ], | 3054 ], |
| 3055 }], | 3055 }], |
| 3056 ['OS=="win" or OS=="mac" or desktop_linux==1', { | 3056 ['OS=="win" or OS=="mac" or desktop_linux==1', { |
| 3057 'sources': [ '<@(chrome_browser_ui_desktop_sources)' ], | 3057 'sources': [ '<@(chrome_browser_ui_desktop_sources)' ], |
| 3058 }], | 3058 }], |
| 3059 ['use_aura==1', { | 3059 ['use_aura==1', { |
| 3060 'sources': [ '<@(chrome_browser_ui_aura_sources)'] , | 3060 'sources': [ '<@(chrome_browser_ui_aura_sources)'] , |
| 3061 'dependencies': [ | 3061 'dependencies': [ |
| 3062 # aura uses some of ash resources. | 3062 # aura uses some of ash resources. |
| 3063 '../ash/ash_resources.gyp:ash_resources', | 3063 '../ash/ash_resources.gyp:ash_resources', |
| 3064 '../ash/wm/common/ash_wm_common_resources.gyp:ash_wm_common_resource
s', | |
| 3065 '../ui/aura/aura.gyp:aura', | 3064 '../ui/aura/aura.gyp:aura', |
| 3066 '../ui/keyboard/keyboard.gyp:keyboard', | 3065 '../ui/keyboard/keyboard.gyp:keyboard', |
| 3067 '../ui/keyboard/keyboard.gyp:keyboard_with_content', | 3066 '../ui/keyboard/keyboard.gyp:keyboard_with_content', |
| 3068 '../ui/keyboard/keyboard.gyp:keyboard_resources', | 3067 '../ui/keyboard/keyboard.gyp:keyboard_resources', |
| 3069 '../ui/wm/wm.gyp:wm', | 3068 '../ui/wm/wm.gyp:wm', |
| 3070 ], | 3069 ], |
| 3071 'conditions': [ | 3070 'conditions': [ |
| 3072 ['chromeos == 0', { | 3071 ['chromeos == 0', { |
| 3073 'sources': [ '<@(chrome_browser_ui_aura_non_chromeos)' ], | 3072 'sources': [ '<@(chrome_browser_ui_aura_non_chromeos)' ], |
| 3074 }], | 3073 }], |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3338 ], | 3337 ], |
| 3339 'sources': [ | 3338 'sources': [ |
| 3340 '<@(chrome_browser_ui_non_mobile_sources)', | 3339 '<@(chrome_browser_ui_non_mobile_sources)', |
| 3341 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', | 3340 '<@(chrome_browser_ui_omnibox_non_mobile_sources)', |
| 3342 ], | 3341 ], |
| 3343 }], | 3342 }], |
| 3344 ], | 3343 ], |
| 3345 }, | 3344 }, |
| 3346 ], | 3345 ], |
| 3347 } | 3346 } |
| OLD | NEW |