| 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 '../views/views.gyp:views', | 19 '../views/views.gyp:views', |
| 20 ], | 20 ], |
| 21 'defines': [ | 21 'defines': [ |
| 22 'APP_LIST_IMPLEMENTATION', | 22 'APP_LIST_IMPLEMENTATION', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 'app_list_bubble_border.cc', | 25 'app_list_bubble_border.cc', |
| 26 'app_list_bubble_border.h', | 26 'app_list_bubble_border.h', |
| 27 'app_list_constants.cc', |
| 28 'app_list_constants.h', |
| 27 'app_list_export.h', | 29 'app_list_export.h', |
| 28 'app_list_item_model.cc', | 30 'app_list_item_model.cc', |
| 29 'app_list_item_model.h', | 31 'app_list_item_model.h', |
| 30 'app_list_item_model_observer.h', | 32 'app_list_item_model_observer.h', |
| 31 'app_list_item_view.cc', | 33 'app_list_item_view.cc', |
| 32 'app_list_item_view.h', | 34 'app_list_item_view.h', |
| 33 'app_list_model.cc', | 35 'app_list_model.cc', |
| 34 'app_list_model.h', | 36 'app_list_model.h', |
| 35 'app_list_switches.cc', | 37 'app_list_switches.cc', |
| 36 'app_list_switches.h', | 38 'app_list_switches.h', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 'sources': [ | 84 'sources': [ |
| 83 'apps_grid_view_unittest.cc', | 85 'apps_grid_view_unittest.cc', |
| 84 'pagination_model_unittest.cc', | 86 'pagination_model_unittest.cc', |
| 85 'test/app_list_test_suite.cc', | 87 'test/app_list_test_suite.cc', |
| 86 'test/app_list_test_suite.h', | 88 'test/app_list_test_suite.h', |
| 87 'test/run_all_unittests.cc', | 89 'test/run_all_unittests.cc', |
| 88 ], | 90 ], |
| 89 }, | 91 }, |
| 90 ], | 92 ], |
| 91 } | 93 } |
| OLD | NEW |