Chromium Code Reviews| Index: components/bookmarks_enhanced.gypi |
| diff --git a/components/bookmarks_enhanced.gypi b/components/bookmarks_enhanced.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8ec3a159e3ac3bb086abf01e70d377813315b339 |
| --- /dev/null |
| +++ b/components/bookmarks_enhanced.gypi |
| @@ -0,0 +1,59 @@ |
| +# Copyright 2014 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'bookmarks_enhanced', |
| + 'type': 'static_library', |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'dependencies': [ |
| + '../base/base.gyp:base', |
| + '../sql/sql.gyp:sql', |
| + '../ui/gfx/gfx.gyp:gfx', |
| + '../url/url.gyp:url_lib', |
| + ], |
| + 'sources': [ |
| + 'bookmarks_enhanced/image_store.cc', |
| + 'bookmarks_enhanced/image_store.h', |
| + 'bookmarks_enhanced/image_store_util.cc', |
| + 'bookmarks_enhanced/image_store_util.h', |
| + 'bookmarks_enhanced/persistent_image_store.cc', |
| + 'bookmarks_enhanced/persistent_image_store.h', |
| + ], |
| + 'conditions': [ |
| + ['OS=="ios"', { |
| + 'sources!': [ |
| + 'bookmarks_enhanced/image_store_util.cc', |
| + ], |
| + }], |
| + ], |
| + }, |
| + { |
| + 'target_name': 'bookmarks_enhanced_test_support', |
| + 'type': 'static_library', |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'dependencies': [ |
| + '../testing/gtest.gyp:gtest', |
| + 'bookmarks_enhanced', |
| + ], |
| + 'sources': [ |
| + 'bookmarks_enhanced/image_store_unittest.cc', |
|
tfarina
2014/05/08 19:57:19
No. The unittest.cc goes into the components_unitt
Kibeom Kim (inactive)
2014/05/08 20:02:03
Oh, I see. Done.
|
| + 'bookmarks_enhanced/test_image_store.cc', |
| + 'bookmarks_enhanced/test_image_store.h', |
| + ], |
| + 'conditions': [ |
| + ['OS=="ios"', { |
| + 'sources!': [ |
| + 'bookmarks_enhanced/image_store_unittest.cc', |
| + ], |
| + }], |
| + ], |
| + }, |
| + ], |
| +} |