| 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': 'enhanced_bookmarks', | 8 'target_name': 'enhanced_bookmarks', |
| 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 '../sql/sql.gyp:sql', | 16 '../sql/sql.gyp:sql', |
| 16 '../ui/gfx/gfx.gyp:gfx', | 17 '../ui/gfx/gfx.gyp:gfx', |
| 17 '../url/url.gyp:url_lib', | 18 '../url/url.gyp:url_lib', |
| 18 'bookmarks_browser', | 19 'bookmarks_browser', |
| 19 'enhanced_bookmarks_proto', | 20 'enhanced_bookmarks_proto', |
| 21 'keyed_service_core', |
| 20 ], | 22 ], |
| 21 'sources': [ | 23 'sources': [ |
| 24 'enhanced_bookmarks/bookmark_image_service.cc', |
| 25 'enhanced_bookmarks/bookmark_image_service.h', |
| 22 'enhanced_bookmarks/enhanced_bookmark_utils.cc', | 26 'enhanced_bookmarks/enhanced_bookmark_utils.cc', |
| 23 'enhanced_bookmarks/enhanced_bookmark_utils.h', | 27 'enhanced_bookmarks/enhanced_bookmark_utils.h', |
| 24 'enhanced_bookmarks/image_store.cc', | 28 'enhanced_bookmarks/image_store.cc', |
| 25 'enhanced_bookmarks/image_store.h', | 29 'enhanced_bookmarks/image_store.h', |
| 26 'enhanced_bookmarks/image_store_util.cc', | 30 'enhanced_bookmarks/image_store_util.cc', |
| 27 'enhanced_bookmarks/image_store_util.h', | 31 'enhanced_bookmarks/image_store_util.h', |
| 28 'enhanced_bookmarks/image_store_util_ios.mm', | 32 'enhanced_bookmarks/image_store_util_ios.mm', |
| 29 'enhanced_bookmarks/metadata_accessor.cc', | 33 'enhanced_bookmarks/metadata_accessor.cc', |
| 30 'enhanced_bookmarks/metadata_accessor.h', | 34 'enhanced_bookmarks/metadata_accessor.h', |
| 31 'enhanced_bookmarks/persistent_image_store.cc', | 35 'enhanced_bookmarks/persistent_image_store.cc', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ], | 104 ], |
| 101 'variables': { | 105 'variables': { |
| 102 'jni_gen_package': 'enhanced_bookmarks', | 106 'jni_gen_package': 'enhanced_bookmarks', |
| 103 }, | 107 }, |
| 104 'includes': [ '../build/jni_generator.gypi' ], | 108 'includes': [ '../build/jni_generator.gypi' ], |
| 105 }, | 109 }, |
| 106 ], | 110 ], |
| 107 }] | 111 }] |
| 108 ], | 112 ], |
| 109 } | 113 } |
| OLD | NEW |