| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'bookmarks_core_browser', | 8 'target_name': 'bookmarks_core_browser', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 '..', | 11 '..', |
| 12 ], | 12 ], |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../net/net.gyp:net', | 15 '../net/net.gyp:net', |
| 16 '../third_party/icu/icu.gyp:icuuc', | 16 '../third_party/icu/icu.gyp:icuuc', |
| 17 '../ui/base/ui_base.gyp:ui_base', | 17 '../ui/base/ui_base.gyp:ui_base', |
| 18 '../ui/gfx/gfx.gyp:gfx', | 18 '../ui/gfx/gfx.gyp:gfx', |
| 19 '../url/url.gyp:url_lib', | 19 '../url/url.gyp:url_lib', |
| 20 'bookmarks_core_common', | 20 'bookmarks_core_common', |
| 21 'components_strings.gyp:components_strings', | 21 'components_strings.gyp:components_strings', |
| 22 'favicon_base', | 22 'favicon_base', |
| 23 'query_parser', | 23 'query_parser', |
| 24 'startup_metric_utils', | 24 'startup_metric_utils', |
| 25 'user_prefs', | 25 'pref_registry', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 'bookmarks/core/browser/base_bookmark_model_observer.cc', | 28 'bookmarks/core/browser/base_bookmark_model_observer.cc', |
| 29 'bookmarks/core/browser/base_bookmark_model_observer.h', | 29 'bookmarks/core/browser/base_bookmark_model_observer.h', |
| 30 'bookmarks/core/browser/bookmark_client.h', | 30 'bookmarks/core/browser/bookmark_client.h', |
| 31 'bookmarks/core/browser/bookmark_codec.cc', | 31 'bookmarks/core/browser/bookmark_codec.cc', |
| 32 'bookmarks/core/browser/bookmark_codec.h', | 32 'bookmarks/core/browser/bookmark_codec.h', |
| 33 'bookmarks/core/browser/bookmark_expanded_state_tracker.cc', | 33 'bookmarks/core/browser/bookmark_expanded_state_tracker.cc', |
| 34 'bookmarks/core/browser/bookmark_expanded_state_tracker.h', | 34 'bookmarks/core/browser/bookmark_expanded_state_tracker.h', |
| 35 'bookmarks/core/browser/bookmark_index.cc', | 35 'bookmarks/core/browser/bookmark_index.cc', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 ], | 86 ], |
| 87 'sources': [ | 87 'sources': [ |
| 88 'bookmarks/core/test/bookmark_test_helpers.cc', | 88 'bookmarks/core/test/bookmark_test_helpers.cc', |
| 89 'bookmarks/core/test/bookmark_test_helpers.h', | 89 'bookmarks/core/test/bookmark_test_helpers.h', |
| 90 'bookmarks/core/test/test_bookmark_client.cc', | 90 'bookmarks/core/test/test_bookmark_client.cc', |
| 91 'bookmarks/core/test/test_bookmark_client.h', | 91 'bookmarks/core/test/test_bookmark_client.h', |
| 92 ], | 92 ], |
| 93 }, | 93 }, |
| 94 ], | 94 ], |
| 95 } | 95 } |
| OLD | NEW |