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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'app_list', | 11 'target_name': 'app_list', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
15 '../../base/base.gyp:base_i18n', | 15 '../../base/base.gyp:base_i18n', |
16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
17 '../../skia/skia.gyp:skia', | 17 '../../skia/skia.gyp:skia', |
18 '../base/strings/ui_strings.gyp:ui_strings', | 18 '../base/strings/ui_strings.gyp:ui_strings', |
19 '../compositor/compositor.gyp:compositor', | 19 '../compositor/compositor.gyp:compositor', |
20 '../events/events.gyp:events', | |
21 '../gfx/gfx.gyp:gfx', | 20 '../gfx/gfx.gyp:gfx', |
22 '../ui.gyp:ui', | 21 '../ui.gyp:ui', |
23 '../ui.gyp:ui_resources', | 22 '../ui.gyp:ui_resources', |
24 ], | 23 ], |
25 'defines': [ | 24 'defines': [ |
26 'APP_LIST_IMPLEMENTATION', | 25 'APP_LIST_IMPLEMENTATION', |
27 ], | 26 ], |
28 'sources': [ | 27 'sources': [ |
29 'app_list_constants.cc', | 28 'app_list_constants.cc', |
30 'app_list_constants.h', | 29 'app_list_constants.h', |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 'conditions': [ | 125 'conditions': [ |
127 ['use_aura==1', { | 126 ['use_aura==1', { |
128 'dependencies': [ | 127 'dependencies': [ |
129 '../aura/aura.gyp:aura', | 128 '../aura/aura.gyp:aura', |
130 ], | 129 ], |
131 }], | 130 }], |
132 ['toolkit_views==1', { | 131 ['toolkit_views==1', { |
133 'dependencies': [ | 132 'dependencies': [ |
134 '../../content/content.gyp:content', | 133 '../../content/content.gyp:content', |
135 '../../content/content.gyp:content_browser', | 134 '../../content/content.gyp:content_browser', |
| 135 '../events/events.gyp:events', |
136 '../views/controls/webview/webview.gyp:webview', | 136 '../views/controls/webview/webview.gyp:webview', |
137 '../views/views.gyp:views', | 137 '../views/views.gyp:views', |
138 ], | 138 ], |
139 }, { # toolkit_views==0 | 139 }, { # toolkit_views==0 |
140 'sources/': [ | 140 'sources/': [ |
141 ['exclude', 'views/'], | 141 ['exclude', 'views/'], |
142 ], | 142 ], |
143 }], | 143 }], |
144 ['OS=="mac"', { | 144 ['OS=="mac"', { |
145 'dependencies': [ | 145 'dependencies': [ |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 'dependencies': [ | 246 'dependencies': [ |
247 '../../base/allocator/allocator.gyp:allocator', | 247 '../../base/allocator/allocator.gyp:allocator', |
248 ], | 248 ], |
249 }], | 249 }], |
250 ], | 250 ], |
251 # Disable c4267 warnings until we fix size_t to int truncations. | 251 # Disable c4267 warnings until we fix size_t to int truncations. |
252 'msvs_disabled_warnings': [ 4267, ], | 252 'msvs_disabled_warnings': [ 4267, ], |
253 }, | 253 }, |
254 ], | 254 ], |
255 } | 255 } |
OLD | NEW |