| 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 # GN: //components/enhanced_bookmarks:enhanced_bookmarks | 8 # GN: //components/enhanced_bookmarks:enhanced_bookmarks |
| 9 'target_name': 'enhanced_bookmarks', | 9 'target_name': 'enhanced_bookmarks', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 'keyed_service_core', | 24 'keyed_service_core', |
| 25 'signin_core_browser', | 25 'signin_core_browser', |
| 26 'sync_driver', | 26 'sync_driver', |
| 27 'variations', | 27 'variations', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 'enhanced_bookmarks/bookmark_server_cluster_service.cc', | 30 'enhanced_bookmarks/bookmark_server_cluster_service.cc', |
| 31 'enhanced_bookmarks/bookmark_server_cluster_service.h', | 31 'enhanced_bookmarks/bookmark_server_cluster_service.h', |
| 32 'enhanced_bookmarks/bookmark_server_service.cc', | 32 'enhanced_bookmarks/bookmark_server_service.cc', |
| 33 'enhanced_bookmarks/bookmark_server_service.h', | 33 'enhanced_bookmarks/bookmark_server_service.h', |
| 34 'enhanced_bookmarks/enhanced_bookmark_features.cc', | |
| 35 'enhanced_bookmarks/enhanced_bookmark_features.h', | |
| 36 'enhanced_bookmarks/enhanced_bookmark_model.cc', | 34 'enhanced_bookmarks/enhanced_bookmark_model.cc', |
| 37 'enhanced_bookmarks/enhanced_bookmark_model.h', | 35 'enhanced_bookmarks/enhanced_bookmark_model.h', |
| 38 'enhanced_bookmarks/enhanced_bookmark_model_observer.h', | 36 'enhanced_bookmarks/enhanced_bookmark_model_observer.h', |
| 39 'enhanced_bookmarks/enhanced_bookmark_switches.cc', | |
| 40 'enhanced_bookmarks/enhanced_bookmark_switches.h', | |
| 41 'enhanced_bookmarks/enhanced_bookmark_utils.cc', | 37 'enhanced_bookmarks/enhanced_bookmark_utils.cc', |
| 42 'enhanced_bookmarks/enhanced_bookmark_utils.h', | 38 'enhanced_bookmarks/enhanced_bookmark_utils.h', |
| 43 'enhanced_bookmarks/image_record.cc', | 39 'enhanced_bookmarks/image_record.cc', |
| 44 'enhanced_bookmarks/image_record.h', | 40 'enhanced_bookmarks/image_record.h', |
| 45 'enhanced_bookmarks/image_store.cc', | 41 'enhanced_bookmarks/image_store.cc', |
| 46 'enhanced_bookmarks/image_store.h', | 42 'enhanced_bookmarks/image_store.h', |
| 47 'enhanced_bookmarks/image_store_util.cc', | 43 'enhanced_bookmarks/image_store_util.cc', |
| 48 'enhanced_bookmarks/image_store_util.h', | 44 'enhanced_bookmarks/image_store_util.h', |
| 49 'enhanced_bookmarks/image_store_util_ios.mm', | 45 'enhanced_bookmarks/image_store_util_ios.mm', |
| 50 'enhanced_bookmarks/item_position.cc', | 46 'enhanced_bookmarks/item_position.cc', |
| 51 'enhanced_bookmarks/item_position.h', | 47 'enhanced_bookmarks/item_position.h', |
| 52 'enhanced_bookmarks/metadata_accessor.cc', | 48 'enhanced_bookmarks/metadata_accessor.cc', |
| 53 'enhanced_bookmarks/metadata_accessor.h', | 49 'enhanced_bookmarks/metadata_accessor.h', |
| 54 'enhanced_bookmarks/persistent_image_store.cc', | 50 'enhanced_bookmarks/persistent_image_store.cc', |
| 55 'enhanced_bookmarks/persistent_image_store.h', | 51 'enhanced_bookmarks/persistent_image_store.h', |
| 56 'enhanced_bookmarks/pref_names.cc', | 52 'enhanced_bookmarks/pref_names.cc', |
| 57 'enhanced_bookmarks/pref_names.h', | 53 'enhanced_bookmarks/pref_names.h', |
| 58 ], | 54 ], |
| 59 'conditions': [ | 55 'conditions': [ |
| 60 ['OS=="ios"', { | 56 ['OS=="ios"', { |
| 57 'sources': [ |
| 58 'enhanced_bookmarks/enhanced_bookmark_features.cc', |
| 59 'enhanced_bookmarks/enhanced_bookmark_features.h', |
| 60 'enhanced_bookmarks/enhanced_bookmark_switches.cc', |
| 61 'enhanced_bookmarks/enhanced_bookmark_switches.h', |
| 62 ], |
| 61 'sources!': [ | 63 'sources!': [ |
| 62 'enhanced_bookmarks/image_store_util.cc', | 64 'enhanced_bookmarks/image_store_util.cc', |
| 63 ], | 65 ], |
| 64 }], | 66 }], |
| 65 ], | 67 ], |
| 66 }, | 68 }, |
| 67 { | 69 { |
| 68 # GN: //components/enhanced_bookmarks:enhanced_bookmarks_test_support | 70 # GN: //components/enhanced_bookmarks:enhanced_bookmarks_test_support |
| 69 'target_name': 'enhanced_bookmarks_test_support', | 71 'target_name': 'enhanced_bookmarks_test_support', |
| 70 'type': 'static_library', | 72 'type': 'static_library', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'variables': { | 108 'variables': { |
| 107 'source_file': 'enhanced_bookmarks/enhanced_bookmark_utils.h', | 109 'source_file': 'enhanced_bookmarks/enhanced_bookmark_utils.h', |
| 108 }, | 110 }, |
| 109 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 111 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 110 }, | 112 }, |
| 111 ], | 113 ], |
| 112 }, | 114 }, |
| 113 ], | 115 ], |
| 114 ], | 116 ], |
| 115 } | 117 } |
| OLD | NEW |