OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'app_list', |
| 12 'type': '<(component)', |
| 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', |
| 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 16 '../../skia/skia.gyp:skia', |
| 17 '../aura/aura.gyp:aura', |
| 18 '../compositor/compositor.gyp:compositor', |
| 19 '../ui.gyp:ui', |
| 20 '../views/views.gyp:views', |
| 21 ], |
| 22 'defines': [ |
| 23 'APP_LIST_IMPLEMENTATION', |
| 24 ], |
| 25 'sources': [ |
| 26 'app_list_bubble_border.cc', |
| 27 'app_list_bubble_border.h', |
| 28 'app_list_item_model.cc', |
| 29 'app_list_item_model.h', |
| 30 'app_list_item_model_observer.h', |
| 31 'app_list_item_view.cc', |
| 32 'app_list_item_view.h', |
| 33 'app_list_model.cc', |
| 34 'app_list_model.h', |
| 35 'app_list_model_view.cc', |
| 36 'app_list_model_view.h', |
| 37 'app_list_view.cc', |
| 38 'app_list_view.h', |
| 39 'app_list_view_delegate.h', |
| 40 'drop_shadow_label.cc', |
| 41 'drop_shadow_label.h', |
| 42 'icon_cache.cc', |
| 43 'icon_cache.h', |
| 44 'page_switcher.cc', |
| 45 'page_switcher.h', |
| 46 'pagination_model.cc', |
| 47 'pagination_model.h', |
| 48 'pagination_model_observer.h', |
| 49 ], |
| 50 }, |
| 51 { |
| 52 'target_name': 'app_list_unittests', |
| 53 'type': 'executable', |
| 54 'dependencies': [ |
| 55 '../../base/base.gyp:base', |
| 56 '../../base/base.gyp:test_support_base', |
| 57 '../../skia/skia.gyp:skia', |
| 58 '../../testing/gtest.gyp:gtest', |
| 59 '../compositor/compositor.gyp:compositor', |
| 60 '../compositor/compositor.gyp:compositor_test_support', |
| 61 '../views/views.gyp:views', |
| 62 'app_list', |
| 63 ], |
| 64 'sources': [ |
| 65 'app_list_model_view_unittest.cc', |
| 66 'run_all_unittests.cc', |
| 67 ], |
| 68 }, |
| 69 ], |
| 70 } |
OLD | NEW |