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/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
16 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
17 '../compositor/compositor.gyp:compositor', | 17 '../compositor/compositor.gyp:compositor', |
18 '../ui.gyp:ui', | 18 '../ui.gyp:ui', |
| 19 '../ui.gyp:ui_resources', |
19 ], | 20 ], |
20 'defines': [ | 21 'defines': [ |
21 'APP_LIST_IMPLEMENTATION', | 22 'APP_LIST_IMPLEMENTATION', |
22 ], | 23 ], |
23 'sources': [ | 24 'sources': [ |
24 'app_list_constants.cc', | 25 'app_list_constants.cc', |
25 'app_list_constants.h', | 26 'app_list_constants.h', |
26 'app_list_export.h', | 27 'app_list_export.h', |
27 'app_list_item_model.cc', | 28 'app_list_item_model.cc', |
28 'app_list_item_model.h', | 29 'app_list_item_model.h', |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 ], | 149 ], |
149 }, { # OS!="mac" | 150 }, { # OS!="mac" |
150 'sources/': [ | 151 'sources/': [ |
151 ['exclude', 'cocoa/'], | 152 ['exclude', 'cocoa/'], |
152 ], | 153 ], |
153 }], | 154 }], |
154 ], | 155 ], |
155 }, | 156 }, |
156 ], | 157 ], |
157 } | 158 } |
OLD | NEW |