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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "//ui/gfx", | 52 "//ui/gfx", |
53 "//url", | 53 "//url", |
54 ] | 54 ] |
55 | 55 |
56 if (toolkit_views) { | 56 if (toolkit_views) { |
57 sources += [ | 57 sources += [ |
58 "bookmark_node_data_views.cc", | 58 "bookmark_node_data_views.cc", |
59 ] | 59 ] |
60 } | 60 } |
61 } | 61 } |
| 62 |
| 63 source_set("unit_tests") { |
| 64 sources = [ |
| 65 "bookmark_codec_unittest.cc", |
| 66 "bookmark_expanded_state_tracker_unittest.cc", |
| 67 "bookmark_index_unittest.cc", |
| 68 "bookmark_model_unittest.cc", |
| 69 "bookmark_utils_unittest.cc", |
| 70 ] |
| 71 |
| 72 deps = [ |
| 73 ":browser", |
| 74 "//testing/gtest", |
| 75 ] |
| 76 } |
OLD | NEW |