| 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 '../ui/base/ui_base.gyp:ui_base', | 15 '../ui/base/ui_base.gyp:ui_base', |
| 16 '../ui/gfx/gfx.gyp:gfx', | 16 '../ui/gfx/gfx.gyp:gfx', |
| 17 '../url/url.gyp:url_lib', | 17 '../url/url.gyp:url_lib', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 'bookmarks/core/browser/base_bookmark_model_observer.cc', |
| 21 'bookmarks/core/browser/base_bookmark_model_observer.h', |
| 20 'bookmarks/core/browser/bookmark_client.h', | 22 'bookmarks/core/browser/bookmark_client.h', |
| 21 'bookmarks/core/browser/bookmark_match.cc', | 23 'bookmarks/core/browser/bookmark_match.cc', |
| 22 'bookmarks/core/browser/bookmark_match.h', | 24 'bookmarks/core/browser/bookmark_match.h', |
| 25 'bookmarks/core/browser/bookmark_model_observer.h', |
| 23 'bookmarks/core/browser/bookmark_node.cc', | 26 'bookmarks/core/browser/bookmark_node.cc', |
| 24 'bookmarks/core/browser/bookmark_node.h', | 27 'bookmarks/core/browser/bookmark_node.h', |
| 25 'bookmarks/core/browser/bookmark_prompt_prefs.cc', | 28 'bookmarks/core/browser/bookmark_prompt_prefs.cc', |
| 26 'bookmarks/core/browser/bookmark_prompt_prefs.h', | 29 'bookmarks/core/browser/bookmark_prompt_prefs.h', |
| 27 'bookmarks/core/browser/bookmark_service.h', | 30 'bookmarks/core/browser/bookmark_service.h', |
| 28 ], | 31 ], |
| 29 }, | 32 }, |
| 30 { | 33 { |
| 31 'target_name': 'bookmarks_core_common', | 34 'target_name': 'bookmarks_core_common', |
| 32 'type': 'static_library', | 35 'type': 'static_library', |
| 33 'include_dirs': [ | 36 'include_dirs': [ |
| 34 '..', | 37 '..', |
| 35 ], | 38 ], |
| 36 'dependencies': [ | 39 'dependencies': [ |
| 37 '../base/base.gyp:base', | 40 '../base/base.gyp:base', |
| 38 ], | 41 ], |
| 39 'sources': [ | 42 'sources': [ |
| 40 'bookmarks/core/common/bookmark_constants.cc', | 43 'bookmarks/core/common/bookmark_constants.cc', |
| 41 'bookmarks/core/common/bookmark_constants.h', | 44 'bookmarks/core/common/bookmark_constants.h', |
| 42 'bookmarks/core/common/bookmark_pref_names.cc', | 45 'bookmarks/core/common/bookmark_pref_names.cc', |
| 43 'bookmarks/core/common/bookmark_pref_names.h', | 46 'bookmarks/core/common/bookmark_pref_names.h', |
| 44 ], | 47 ], |
| 45 }, | 48 }, |
| 46 ], | 49 ], |
| 47 } | 50 } |
| OLD | NEW |