| 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 '../sql/sql.gyp:sql', | 15 '../sql/sql.gyp:sql', |
| 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 'enhanced_bookmarks/image_store.cc', | 20 'enhanced_bookmarks/image_store.cc', |
| 21 'enhanced_bookmarks/image_store.h', | 21 'enhanced_bookmarks/image_store.h', |
| 22 'enhanced_bookmarks/image_store_util.cc', | 22 'enhanced_bookmarks/image_store_util.cc', |
| 23 'enhanced_bookmarks/image_store_util.h', | 23 'enhanced_bookmarks/image_store_util.h', |
| 24 'enhanced_bookmarks/image_store_util_ios.mm', |
| 24 'enhanced_bookmarks/persistent_image_store.cc', | 25 'enhanced_bookmarks/persistent_image_store.cc', |
| 25 'enhanced_bookmarks/persistent_image_store.h', | 26 'enhanced_bookmarks/persistent_image_store.h', |
| 26 ], | 27 ], |
| 27 'conditions': [ | 28 'conditions': [ |
| 28 ['OS=="ios"', { | 29 ['OS=="ios"', { |
| 29 'sources!': [ | 30 'sources!': [ |
| 30 'enhanced_bookmarks/image_store_util.cc', | 31 'enhanced_bookmarks/image_store_util.cc', |
| 31 ], | 32 ], |
| 32 }], | 33 }], |
| 33 ], | 34 ], |
| 34 }, | 35 }, |
| 35 { | 36 { |
| 36 'target_name': 'enhanced_bookmarks_test_support', | 37 'target_name': 'enhanced_bookmarks_test_support', |
| 37 'type': 'static_library', | 38 'type': 'static_library', |
| 38 'include_dirs': [ | 39 'include_dirs': [ |
| 39 '..', | 40 '..', |
| 40 ], | 41 ], |
| 41 'dependencies': [ | 42 'dependencies': [ |
| 42 '../testing/gtest.gyp:gtest', | 43 '../testing/gtest.gyp:gtest', |
| 43 'enhanced_bookmarks', | 44 'enhanced_bookmarks', |
| 44 ], | 45 ], |
| 45 'sources': [ | 46 'sources': [ |
| 46 'enhanced_bookmarks/test_image_store.cc', | 47 'enhanced_bookmarks/test_image_store.cc', |
| 47 'enhanced_bookmarks/test_image_store.h', | 48 'enhanced_bookmarks/test_image_store.h', |
| 48 ], | 49 ], |
| 49 }, | 50 }, |
| 50 ], | 51 ], |
| 51 } | 52 } |
| OLD | NEW |