diff options
author | sdefresne <sdefresne@chromium.org> | 2015-04-17 14:12:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-17 21:14:10 +0000 |
commit | c083d1f4de8537ee81131ddb5d388f2f686fac85 (patch) | |
tree | 91b5c0d53aa666aa08586d0827d2be4c36d240e5 /components/undo.gypi | |
parent | 298d7eb01ab6f9c1f8781a31c2fddc13f9e4e4e2 (diff) | |
download | chromium_src-c083d1f4de8537ee81131ddb5d388f2f686fac85.zip chromium_src-c083d1f4de8537ee81131ddb5d388f2f686fac85.tar.gz chromium_src-c083d1f4de8537ee81131ddb5d388f2f686fac85.tar.bz2 |
Move undo files into //components/undo
Create a new component //components/undo and move files from
//chrome/browser/undo into the component.
Add DEPS, OWNERS files and add dependencies on the new component into
chrome/browser/BUILD.gn & chrome/chrome_browser.gypi.
Files where moved using tools/git/move_source_files.py and the #include
lines updated automatically by the script.
BUG=476921
Review URL: https://codereview.chromium.org/1090993003
Cr-Commit-Position: refs/heads/master@{#325718}
Diffstat (limited to 'components/undo.gypi')
-rw-r--r-- | components/undo.gypi | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/components/undo.gypi b/components/undo.gypi new file mode 100644 index 0000000..7039ace --- /dev/null +++ b/components/undo.gypi @@ -0,0 +1,34 @@ +# Copyright 2015 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + # GN version: //components/undo + 'target_name': 'undo_component', + 'type': 'static_library', + 'include_dirs': [ + '..', + ], + 'dependencies': [ + '../base/base.gyp:base', + '../ui/base/ui_base.gyp:ui_base', + 'bookmarks_browser', + 'components_strings.gyp:components_strings', + 'keyed_service_core', + ], + 'sources': [ + 'undo/bookmark_renumber_observer.h', + 'undo/bookmark_undo_service.cc', + 'undo/bookmark_undo_service.h', + 'undo/bookmark_undo_utils.cc', + 'undo/bookmark_undo_utils.h', + 'undo/undo_manager.cc', + 'undo/undo_manager.h', + 'undo/undo_manager_observer.h', + 'undo/undo_operation.h', + ], + }, + ], +} |