| 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", | |
| 8 "bookmark_undo_service.cc", | 7 "bookmark_undo_service.cc", |
| 9 "bookmark_undo_service.h", | 8 "bookmark_undo_service.h", |
| 10 "bookmark_undo_utils.cc", | 9 "bookmark_undo_utils.cc", |
| 11 "bookmark_undo_utils.h", | 10 "bookmark_undo_utils.h", |
| 12 "undo_manager.cc", | 11 "undo_manager.cc", |
| 13 "undo_manager.h", | 12 "undo_manager.h", |
| 14 "undo_manager_observer.h", | 13 "undo_manager_observer.h", |
| 15 "undo_operation.h", | 14 "undo_operation.h", |
| 16 ] | 15 ] |
| 17 | 16 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 33 | 32 |
| 34 deps = [ | 33 deps = [ |
| 35 ":undo", | 34 ":undo", |
| 36 "//base", | 35 "//base", |
| 37 "//components/bookmarks/browser", | 36 "//components/bookmarks/browser", |
| 38 "//components/bookmarks/test", | 37 "//components/bookmarks/test", |
| 39 "//testing/gtest", | 38 "//testing/gtest", |
| 40 ] | 39 ] |
| 41 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 40 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 42 } | 41 } |
| OLD | NEW |