| 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', | 20 'bookmarks/core/browser/base_bookmark_model_observer.cc', |
| 21 'bookmarks/core/browser/base_bookmark_model_observer.h', | 21 'bookmarks/core/browser/base_bookmark_model_observer.h', |
| 22 'bookmarks/core/browser/bookmark_client.h', | 22 'bookmarks/core/browser/bookmark_client.h', |
| 23 'bookmarks/core/browser/bookmark_codec.cc', |
| 24 'bookmarks/core/browser/bookmark_codec.h', |
| 25 'bookmarks/core/browser/bookmark_expanded_state_tracker.cc', |
| 26 'bookmarks/core/browser/bookmark_expanded_state_tracker.h', |
| 27 'bookmarks/core/browser/bookmark_index.cc', |
| 28 'bookmarks/core/browser/bookmark_index.h', |
| 23 'bookmarks/core/browser/bookmark_match.cc', | 29 'bookmarks/core/browser/bookmark_match.cc', |
| 24 'bookmarks/core/browser/bookmark_match.h', | 30 'bookmarks/core/browser/bookmark_match.h', |
| 31 'bookmarks/core/browser/bookmark_model.cc', |
| 32 'bookmarks/core/browser/bookmark_model.h', |
| 25 'bookmarks/core/browser/bookmark_model_observer.h', | 33 'bookmarks/core/browser/bookmark_model_observer.h', |
| 26 'bookmarks/core/browser/bookmark_node.cc', | 34 'bookmarks/core/browser/bookmark_node.cc', |
| 27 'bookmarks/core/browser/bookmark_node.h', | 35 'bookmarks/core/browser/bookmark_node.h', |
| 36 'bookmarks/core/browser/bookmark_node_data.cc', |
| 37 'bookmarks/core/browser/bookmark_node_data.h', |
| 38 'bookmarks/core/browser/bookmark_node_data_mac.cc', |
| 39 'bookmarks/core/browser/bookmark_node_data_views.cc', |
| 40 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.h', |
| 41 'bookmarks/core/browser/bookmark_pasteboard_helper_mac.mm', |
| 28 'bookmarks/core/browser/bookmark_prompt_prefs.cc', | 42 'bookmarks/core/browser/bookmark_prompt_prefs.cc', |
| 29 'bookmarks/core/browser/bookmark_prompt_prefs.h', | 43 'bookmarks/core/browser/bookmark_prompt_prefs.h', |
| 30 'bookmarks/core/browser/bookmark_service.h', | 44 'bookmarks/core/browser/bookmark_service.h', |
| 45 'bookmarks/core/browser/bookmark_storage.cc', |
| 46 'bookmarks/core/browser/bookmark_storage.h', |
| 47 'bookmarks/core/browser/bookmark_utils.cc', |
| 48 'bookmarks/core/browser/bookmark_utils.h', |
| 49 'bookmarks/core/browser/scoped_group_bookmark_actions.cc', |
| 50 'bookmarks/core/browser/scoped_group_bookmark_actions.h', |
| 51 ], |
| 52 'conditions': [ |
| 53 ['OS=="android"', { |
| 54 'sources!': [ |
| 55 'bookmarks/core/browser/scoped_group_bookmark_actions.cc', |
| 56 'bookmarks/core/browser/scoped_group_bookmark_actions.h', |
| 57 ], |
| 58 }] |
| 31 ], | 59 ], |
| 32 }, | 60 }, |
| 33 { | 61 { |
| 34 'target_name': 'bookmarks_core_common', | 62 'target_name': 'bookmarks_core_common', |
| 35 'type': 'static_library', | 63 'type': 'static_library', |
| 36 'include_dirs': [ | 64 'include_dirs': [ |
| 37 '..', | 65 '..', |
| 38 ], | 66 ], |
| 39 'dependencies': [ | 67 'dependencies': [ |
| 40 '../base/base.gyp:base', | 68 '../base/base.gyp:base', |
| 41 ], | 69 ], |
| 42 'sources': [ | 70 'sources': [ |
| 43 'bookmarks/core/common/bookmark_constants.cc', | 71 'bookmarks/core/common/bookmark_constants.cc', |
| 44 'bookmarks/core/common/bookmark_constants.h', | 72 'bookmarks/core/common/bookmark_constants.h', |
| 45 'bookmarks/core/common/bookmark_pref_names.cc', | 73 'bookmarks/core/common/bookmark_pref_names.cc', |
| 46 'bookmarks/core/common/bookmark_pref_names.h', | 74 'bookmarks/core/common/bookmark_pref_names.h', |
| 47 ], | 75 ], |
| 48 }, | 76 }, |
| 49 ], | 77 ], |
| 50 } | 78 } |
| OLD | NEW |