| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 source_set("browser") { | 7 source_set("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "base_bookmark_model_observer.cc", | 9 "base_bookmark_model_observer.cc", |
| 10 "base_bookmark_model_observer.h", | 10 "base_bookmark_model_observer.h", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "//components/startup_metric_utils", | 49 "//components/startup_metric_utils", |
| 50 "//components/strings", | 50 "//components/strings", |
| 51 "//net", | 51 "//net", |
| 52 "//third_party/icu", | 52 "//third_party/icu", |
| 53 "//ui/base", | 53 "//ui/base", |
| 54 "//ui/gfx", | 54 "//ui/gfx", |
| 55 "//url", | 55 "//url", |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 if (toolkit_views) { | 58 if (toolkit_views) { |
| 59 sources += [ | 59 sources += [ "bookmark_node_data_views.cc" ] |
| 60 "bookmark_node_data_views.cc", | |
| 61 ] | |
| 62 } | 60 } |
| 63 } | 61 } |
| 64 | 62 |
| 65 source_set("unit_tests") { | 63 source_set("unit_tests") { |
| 66 testonly = true | 64 testonly = true |
| 67 sources = [ | 65 sources = [ |
| 68 "bookmark_codec_unittest.cc", | 66 "bookmark_codec_unittest.cc", |
| 69 "bookmark_expanded_state_tracker_unittest.cc", | 67 "bookmark_expanded_state_tracker_unittest.cc", |
| 70 "bookmark_index_unittest.cc", | 68 "bookmark_index_unittest.cc", |
| 71 "bookmark_model_unittest.cc", | 69 "bookmark_model_unittest.cc", |
| 72 "bookmark_utils_unittest.cc", | 70 "bookmark_utils_unittest.cc", |
| 73 ] | 71 ] |
| 74 | 72 |
| 75 deps = [ | 73 deps = [ |
| 76 ":browser", | 74 ":browser", |
| 77 "//base:prefs", | 75 "//base:prefs", |
| 78 "//base:prefs_test_support", | 76 "//base:prefs_test_support", |
| 79 "//components/bookmarks/common", | 77 "//components/bookmarks/common", |
| 80 "//components/bookmarks/test", | 78 "//components/bookmarks/test", |
| 81 "//components/pref_registry", | 79 "//components/pref_registry", |
| 82 "//testing/gtest", | 80 "//testing/gtest", |
| 83 "//ui/base", | 81 "//ui/base", |
| 84 "//url", | 82 "//url", |
| 85 ] | 83 ] |
| 86 } | 84 } |
| OLD | NEW |