Chromium Code Reviews| 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 static_library("undo") { | 5 static_library("undo") { |
| 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", |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 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 "//components/bookmarks/test", | 35 "//components/bookmarks/test", |
| 36 "//components/undo", | |
| 37 "//testing/gtest", | 36 "//testing/gtest", |
| 37 ":undo", | |
|
tfarina
2015/04/20 12:41:59
I know sort would but this last, but in general we
| |
| 38 ] | 38 ] |
| 39 } | 39 } |
| OLD | NEW |