OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 ['os_posix==1 and use_aura==1 and linux_use_tcmalloc==1', { | 156 ['os_posix==1 and use_aura==1 and linux_use_tcmalloc==1', { |
157 'dependencies': [ | 157 'dependencies': [ |
158 # This is needed by content/app/content_main_runner.cc | 158 # This is needed by content/app/content_main_runner.cc |
159 '../base/allocator/allocator.gyp:allocator', | 159 '../base/allocator/allocator.gyp:allocator', |
160 ], | 160 ], |
161 }], | 161 }], |
162 ['use_aura==1', { | 162 ['use_aura==1', { |
163 'dependencies': [ | 163 'dependencies': [ |
164 '../ui/aura/aura.gyp:aura', | 164 '../ui/aura/aura.gyp:aura', |
165 '../ui/base/strings/ui_strings.gyp:ui_strings', | 165 '../ui/base/strings/ui_strings.gyp:ui_strings', |
| 166 '../ui/views/controls/webview/webview.gyp:webview', |
166 '../ui/views/views.gyp:views', | 167 '../ui/views/views.gyp:views', |
167 '../ui/ui.gyp:ui_resources', | 168 '../ui/ui.gyp:ui_resources', |
168 ], | 169 ], |
169 'sources/': [ | 170 'sources/': [ |
170 ['exclude', 'shell/shell_gtk.cc'], | 171 ['exclude', 'shell/shell_gtk.cc'], |
171 ['exclude', 'shell/shell_win.cc'], | 172 ['exclude', 'shell/shell_win.cc'], |
172 ], | 173 ], |
173 }], # use_aura==1 | 174 }], # use_aura==1 |
174 ['chromeos==1', { | 175 ['chromeos==1', { |
175 'dependencies': [ | 176 'dependencies': [ |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 'dependencies': [ | 673 'dependencies': [ |
673 'content_java', | 674 'content_java', |
674 ], | 675 ], |
675 } | 676 } |
676 ], | 677 ], |
677 }, | 678 }, |
678 ], | 679 ], |
679 }], # OS=="android" | 680 }], # OS=="android" |
680 ] | 681 ] |
681 } | 682 } |
OLD | NEW |