| 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 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", |
| 11 "bookmark_client.cc", | 11 "bookmark_client.cc", |
| 12 "bookmark_client.h", | 12 "bookmark_client.h", |
| 13 "bookmark_codec.cc", | 13 "bookmark_codec.cc", |
| 14 "bookmark_codec.h", | 14 "bookmark_codec.h", |
| 15 "bookmark_expanded_state_tracker.cc", | 15 "bookmark_expanded_state_tracker.cc", |
| 16 "bookmark_expanded_state_tracker.h", | 16 "bookmark_expanded_state_tracker.h", |
| 17 "bookmark_index.cc", | 17 "bookmark_index.cc", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "//url", | 118 "//url", |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 if (use_x11) { | 121 if (use_x11) { |
| 122 deps += [ | 122 deps += [ |
| 123 "//ui/events/platform/x11", | 123 "//ui/events/platform/x11", |
| 124 "//ui/gfx/x", | 124 "//ui/gfx/x", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| 127 } | 127 } |
| OLD | NEW |