OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/undo | 8 'target_name': 'webusb', |
9 'target_name': 'undo_component', | |
10 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ |
| 11 '../base/base.gyp:base', |
| 12 '../device/core/core.gyp:device_core', |
| 13 '../device/usb/usb.gyp:device_usb', |
| 14 '../ui/base/ui_base.gyp:ui_base', |
| 15 '../ui/gfx/gfx.gyp:gfx', |
| 16 '../ui/message_center/message_center.gyp:message_center', |
| 17 'components_strings.gyp:components_strings', |
| 18 'keyed_service_core', |
| 19 ], |
11 'include_dirs': [ | 20 'include_dirs': [ |
12 '..', | 21 '..', |
13 ], | 22 ], |
14 'dependencies': [ | |
15 '../base/base.gyp:base', | |
16 '../ui/base/ui_base.gyp:ui_base', | |
17 'bookmarks_browser', | |
18 'components_strings.gyp:components_strings', | |
19 'keyed_service_core', | |
20 ], | |
21 'sources': [ | 23 'sources': [ |
22 'undo/bookmark_renumber_observer.h', | 24 'webusb/webusb_browser_client.cc', |
23 'undo/bookmark_undo_service.cc', | 25 'webusb/webusb_browser_client.h', |
24 'undo/bookmark_undo_service.h', | 26 'webusb/webusb_detector.cc', |
25 'undo/bookmark_undo_utils.cc', | 27 'webusb/webusb_detector.h', |
26 'undo/bookmark_undo_utils.h', | |
27 'undo/undo_manager.cc', | |
28 'undo/undo_manager.h', | |
29 'undo/undo_manager_observer.h', | |
30 'undo/undo_operation.h', | |
31 ], | 28 ], |
32 }, | 29 }, |
33 ], | 30 ], |
34 } | 31 } |
OLD | NEW |