Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: components/undo/BUILD.gn

Issue 1092813005: Cleanup after componentization of //chrome/browser/undo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/OWNERS ('k') | components/undo/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 static_library("undo") { 5 static_library("undo") {
tfarina 2015/04/20 13:10:50 just curious (I haven't look), have you run this t
sdefresne 2015/04/20 13:13:29 I had not, but I just did, and no error is reporte
6 sources = [ 6 sources = [
7 "bookmark_renumber_observer.h", 7 "bookmark_renumber_observer.h",
8 "bookmark_undo_service.cc", 8 "bookmark_undo_service.cc",
9 "bookmark_undo_service.h", 9 "bookmark_undo_service.h",
10 "bookmark_undo_utils.cc", 10 "bookmark_undo_utils.cc",
11 "bookmark_undo_utils.h", 11 "bookmark_undo_utils.h",
12 "undo_manager.cc", 12 "undo_manager.cc",
13 "undo_manager.h", 13 "undo_manager.h",
14 "undo_manager_observer.h", 14 "undo_manager_observer.h",
15 "undo_operation.h", 15 "undo_operation.h",
16 ] 16 ]
17 17
18 deps = [ 18 deps = [
19 "//base", 19 "//base",
20 "//components/bookmarks/browser", 20 "//components/bookmarks/browser",
21 "//components/keyed_service/core", 21 "//components/keyed_service/core",
22 "//components/strings", 22 "//components/strings",
23 "//ui/base", 23 "//ui/base",
24 ] 24 ]
25 } 25 }
26 26
27 source_set("unit_tests") { 27 source_set("unit_tests") {
28 testonly = true 28 testonly = true
29 sources = [ 29 sources = [
30 "bookmark_undo_service_test.cc", 30 "bookmark_undo_service_test.cc",
31 "undo_manager_test.cc", 31 "undo_manager_test.cc",
32 ] 32 ]
33 33
34 deps = [ 34 deps = [
35 ":undo",
tfarina 2015/04/20 13:10:50 yep, thanks.
sdefresne 2015/04/20 13:13:29 Acknowledged.
35 "//components/bookmarks/test", 36 "//components/bookmarks/test",
36 "//testing/gtest", 37 "//testing/gtest",
37 ":undo",
38 ] 38 ]
39 } 39 }
OLDNEW
« no previous file with comments | « components/OWNERS ('k') | components/undo/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698