| 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 static_library("browser") { | 7 static_library("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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 } | 93 } |
| 94 | 94 |
| 95 source_set("unit_tests") { | 95 source_set("unit_tests") { |
| 96 testonly = true | 96 testonly = true |
| 97 sources = [ | 97 sources = [ |
| 98 "bookmark_codec_unittest.cc", | 98 "bookmark_codec_unittest.cc", |
| 99 "bookmark_expanded_state_tracker_unittest.cc", | 99 "bookmark_expanded_state_tracker_unittest.cc", |
| 100 "bookmark_index_unittest.cc", | 100 "bookmark_index_unittest.cc", |
| 101 "bookmark_model_unittest.cc", | 101 "bookmark_model_unittest.cc", |
| 102 "bookmark_utils_unittest.cc", | 102 "bookmark_utils_unittest.cc", |
| 103 "titled_url_match_unittest.cc", |
| 103 ] | 104 ] |
| 104 | 105 |
| 105 if (toolkit_views) { | 106 if (toolkit_views) { |
| 106 sources += [ "bookmark_node_data_unittest.cc" ] | 107 sources += [ "bookmark_node_data_unittest.cc" ] |
| 107 } | 108 } |
| 108 | 109 |
| 109 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 110 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 110 | 111 |
| 111 deps = [ | 112 deps = [ |
| 112 ":browser", | 113 ":browser", |
| 113 ":unit_tests_bundle_data", | 114 ":unit_tests_bundle_data", |
| 114 "//components/bookmarks/common", | 115 "//components/bookmarks/common", |
| 115 "//components/bookmarks/test", | 116 "//components/bookmarks/test", |
| 116 "//components/favicon_base", | 117 "//components/favicon_base", |
| 117 "//components/pref_registry", | 118 "//components/pref_registry", |
| 118 "//components/prefs", | 119 "//components/prefs", |
| 119 "//components/prefs:test_support", | 120 "//components/prefs:test_support", |
| 120 "//testing/gtest", | 121 "//testing/gtest", |
| 121 "//ui/base", | 122 "//ui/base", |
| 122 "//url", | 123 "//url", |
| 123 ] | 124 ] |
| 124 } | 125 } |
| OLD | NEW |