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 '../gfx/gfx.gyp:gfx', | 20 '../gfx/gfx.gyp:gfx', |
| 21 '../gfx/gfx.gyp:gfx_geometry', |
21 '../resources/ui_resources.gyp:ui_resources', | 22 '../resources/ui_resources.gyp:ui_resources', |
22 '../ui.gyp:ui', | 23 '../ui.gyp:ui', |
23 ], | 24 ], |
24 'defines': [ | 25 'defines': [ |
25 'APP_LIST_IMPLEMENTATION', | 26 'APP_LIST_IMPLEMENTATION', |
26 ], | 27 ], |
27 'sources': [ | 28 'sources': [ |
28 'app_list_constants.cc', | 29 'app_list_constants.cc', |
29 'app_list_constants.h', | 30 'app_list_constants.h', |
30 'app_list_export.h', | 31 'app_list_export.h', |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 ], | 168 ], |
168 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 169 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
169 'msvs_disabled_warnings': [ 4267, ], | 170 'msvs_disabled_warnings': [ 4267, ], |
170 }, | 171 }, |
171 { | 172 { |
172 'target_name': 'app_list_test_support', | 173 'target_name': 'app_list_test_support', |
173 'type': 'static_library', | 174 'type': 'static_library', |
174 'dependencies': [ | 175 'dependencies': [ |
175 '../../base/base.gyp:base', | 176 '../../base/base.gyp:base', |
176 '../gfx/gfx.gyp:gfx', | 177 '../gfx/gfx.gyp:gfx', |
| 178 '../gfx/gfx.gyp:gfx_geometry', |
177 'app_list', | 179 'app_list', |
178 ], | 180 ], |
179 'sources': [ | 181 'sources': [ |
180 'test/app_list_test_model.cc', | 182 'test/app_list_test_model.cc', |
181 'test/app_list_test_model.h', | 183 'test/app_list_test_model.h', |
182 'test/app_list_test_view_delegate.cc', | 184 'test/app_list_test_view_delegate.cc', |
183 'test/app_list_test_view_delegate.h', | 185 'test/app_list_test_view_delegate.h', |
184 ], | 186 ], |
185 }, | 187 }, |
186 { | 188 { |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 'dependencies': [ | 267 'dependencies': [ |
266 '../../base/allocator/allocator.gyp:allocator', | 268 '../../base/allocator/allocator.gyp:allocator', |
267 ], | 269 ], |
268 }], | 270 }], |
269 ], | 271 ], |
270 # Disable c4267 warnings until we fix size_t to int truncations. | 272 # Disable c4267 warnings until we fix size_t to int truncations. |
271 'msvs_disabled_warnings': [ 4267, ], | 273 'msvs_disabled_warnings': [ 4267, ], |
272 }, | 274 }, |
273 ], | 275 ], |
274 } | 276 } |
OLD | NEW |