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', | |
19 '../base/ui_base.gyp:ui_base', | 18 '../base/ui_base.gyp:ui_base', |
20 '../compositor/compositor.gyp:compositor', | 19 '../compositor/compositor.gyp:compositor', |
21 '../events/events.gyp:events_base', | 20 '../events/events.gyp:events_base', |
22 '../gfx/gfx.gyp:gfx', | 21 '../gfx/gfx.gyp:gfx', |
23 '../gfx/gfx.gyp:gfx_geometry', | 22 '../gfx/gfx.gyp:gfx_geometry', |
24 '../resources/ui_resources.gyp:ui_resources', | 23 '../resources/ui_resources.gyp:ui_resources', |
| 24 '../strings/ui_strings.gyp:ui_strings', |
25 ], | 25 ], |
26 'defines': [ | 26 'defines': [ |
27 'APP_LIST_IMPLEMENTATION', | 27 'APP_LIST_IMPLEMENTATION', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 'app_list_constants.cc', | 30 'app_list_constants.cc', |
31 'app_list_constants.h', | 31 'app_list_constants.h', |
32 'app_list_export.h', | 32 'app_list_export.h', |
33 'app_list_folder_item.cc', | 33 'app_list_folder_item.cc', |
34 'app_list_folder_item.h', | 34 'app_list_folder_item.h', |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 'dependencies': [ | 274 'dependencies': [ |
275 '../../base/allocator/allocator.gyp:allocator', | 275 '../../base/allocator/allocator.gyp:allocator', |
276 ], | 276 ], |
277 }], | 277 }], |
278 ], | 278 ], |
279 # Disable c4267 warnings until we fix size_t to int truncations. | 279 # Disable c4267 warnings until we fix size_t to int truncations. |
280 'msvs_disabled_warnings': [ 4267, ], | 280 'msvs_disabled_warnings': [ 4267, ], |
281 }, | 281 }, |
282 ], | 282 ], |
283 } | 283 } |
OLD | NEW |