| 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 # GN version: //ui/app_list/presenter | 11 # GN version: //ui/app_list/presenter |
| 12 'target_name': 'app_list_presenter', | 12 'target_name': 'app_list_presenter', |
| 13 'type': '<(component)', | 13 'type': '<(component)', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../../../base/base.gyp:base', | 15 '../../../base/base.gyp:base', |
| 16 '../../../skia/skia.gyp:skia', | 16 '../../../skia/skia.gyp:skia', |
| 17 '../../aura/aura.gyp:aura', | 17 '../../aura/aura.gyp:aura', |
| 18 '../../compositor/compositor.gyp:compositor', | 18 '../../compositor/compositor.gyp:compositor', |
| 19 '../../events/events.gyp:events_base', | 19 '../../events/events.gyp:events_base', |
| 20 '../../events/events.gyp:events', | 20 '../../events/events.gyp:events', |
| 21 '../../gfx/gfx.gyp:gfx_geometry', | 21 '../../gfx/gfx.gyp:gfx_geometry', |
| 22 '../../views/views.gyp:views', | 22 '../../views/views.gyp:views', |
| 23 '../app_list.gyp:app_list', | 23 '../app_list.gyp:app_list', |
| 24 |
| 25 # Temporary dependency to fix compile flake in http://crbug.com/611898. |
| 26 # TODO(tapted): Remove once http://crbug.com/612382 is fixed. |
| 27 '../../accessibility/accessibility.gyp:ax_gen', |
| 24 ], | 28 ], |
| 25 'defines': [ | 29 'defines': [ |
| 26 'APP_LIST_PRESENTER_IMPLEMENTATION', | 30 'APP_LIST_PRESENTER_IMPLEMENTATION', |
| 27 ], | 31 ], |
| 28 'sources': [ | 32 'sources': [ |
| 29 # Note: sources list duplicated in GN build. | 33 # Note: sources list duplicated in GN build. |
| 30 'app_list_presenter.h', | 34 'app_list_presenter.h', |
| 31 'app_list_presenter_delegate.cc', | 35 'app_list_presenter_delegate.cc', |
| 32 'app_list_presenter_delegate.h', | 36 'app_list_presenter_delegate.h', |
| 33 'app_list_presenter_delegate_factory.h', | 37 'app_list_presenter_delegate_factory.h', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'dependencies': [ | 105 'dependencies': [ |
| 102 '../../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 106 '../../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 103 ], | 107 ], |
| 104 }], | 108 }], |
| 105 ], | 109 ], |
| 106 }, | 110 }, |
| 107 ], | 111 ], |
| 108 }], | 112 }], |
| 109 ], | 113 ], |
| 110 } | 114 } |
| OLD | NEW |